/*CALENDARIOS*/
/* Estructura del calendario */
.tour-cal-wrapper {
    font-family: inherit;
    border: 1px solid #555555;
    border-radius: 5px;
    overflow: hidden;
    max-width: 100%;
    user-select: none;
}
/* Cabecera (mes / año + flechas) */
.tour-cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff00;
    padding: 10px 16px;
}
/* Botones de navegacion */
.tour-cal-nav {
    border: none;
    border-radius: 5px;
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    padding: 0;
    margin: 0;
    font-size: 1.4rem;
    line-height: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-sizing: border-box;
    transition: background .15s;
}
/* Titulo mes / año */
.tour-cal-title              { text-align: center; line-height: 1.3; }
.tour-cal-title .cal-year    { font-size: .8rem; display: block; }
.tour-cal-title .cal-month   { font-size: 1.15rem; font-weight: 700; }
/* Grid de dias */
.tour-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}
/* Nombres de dias (cabecera grid) */
.tour-cal-dayname {
    background: #282828;
    text-align: center;
    padding: 6px 2px;
    font-size: .72rem;
    font-weight: 600;
}
/* Celdas de dia */
.tour-cal-cell {
    border: 1px solid #555555;
    min-height: 62px;
    padding: 6px 7px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    cursor: default;
    transition: background .12s;
    box-sizing: border-box;
}
/* Estados de celda con ticket */
.tour-cal-cell.has-stock          { cursor: pointer; }
.tour-cal-cell.has-stock:hover    { background: #282828; }
.tour-cal-cell.selected           { background: #C8A96A !important; }
.tour-cal-cell.selected .cal-dia-num { color: white; }
.tour-cal-cell.selected .cal-disp    { color: white; }
.tour-cal-cell.empty              { border-color: #555555; }
.tour-cal-cell.pasado             { opacity: .4; cursor: not-allowed; }
/* Textos dentro de la celda */
.cal-dia-num { font-size: .78rem; }
.cal-disp {
    font-size: 1rem;
    font-weight: 700;
    color: #C8A96A;
    margin-top: 3px;
}
.cal-disp.bajo       { color: #9E8556; }
.cal-agotado-txt     { font-size: .68rem; color: #c00; margin-top: 3px; font-weight: 600; }
/* Banner de fecha seleccionada */
.cal-banner-fecha {
    margin-top: 12px;
    padding: 10px 14px;
    background: #eef3ff;
    border: 1px solid #c0ccf0;
    border-radius: 6px;
    font-size: .9rem;
    color: #1a2fa0;
}
/* Mensaje de carga */
.cal-loading {
    text-align: center;
    padding: 20px;
    color: #888;
}
/* Aviso de fecha requerida */
#tour-fecha-error,
#stour-fecha-error,
#m2tour-fecha-error {
    color: #c00;
    font-size: .9rem;
    margin-top: 8px;
    padding: 8px 12px;
    background: #fff5f5;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
}
