﻿
/* Detalle panel refresh */
.detalle-panel {
    background: linear-gradient(145deg, #f5f7fb 0%, #edf2fb 100%);
    border-radius: 18px;
    padding: 18px 18px 14px;
    box-shadow: 0 10px 30px rgba(10, 25, 47, 0.08);
}
.panel-head {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.panel-label {
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 10px;
    color: #7d90b0;
    margin: 0;
}
.panel-code {
    font-weight: 800;
    color: #0f2547;
    margin: -2px 0 0;
    letter-spacing: .02em;
}
.panel-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f2547;
    margin: 12px 0 10px;
    line-height: 1.25;
    letter-spacing: .01em;
}
.panel-block {
    background: #fff;
    border: 1px solid #e3e9f3;
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 12px;
}
.block-title {
    font-weight: 800;
    color: #0f2547;
    font-size: 13px;
    margin-bottom: 10px;
    letter-spacing: .02em;
    text-transform: uppercase;
}
.airlines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    align-items: center;
}
.airlines-grid img {
    max-height: 50px;
    object-fit: contain;
    filter: saturate(1.1);
}
.airlines-grid .col-md-6 {
    width: 100%;
    max-width: 100%;
    padding: 8px 10px;
    display: grid;
    place-items: center;
    background: #f1f4fa;
    border-radius: 10px;
}
.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 11px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: .02em;
    border: 1px solid transparent;
    text-transform: uppercase;
}
.chip-flight {
    background: #e6f1ff;
    color: #0b4fbf;
    border-color: #b5d3ff;
}
.chip-group {
    background: #fff7e8;
    color: #c16a00;
    border-color: #ffd8a0;
}
.chip-cruise {
    background: #e9fbf2;
    color: #1b9c60;
    border-color: #b7f0d4;
}
.pill-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.pill-list li {
    /* background: #0f2547; */
    background: #dee2e7;
    color: #fff;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: .01em;
    position: relative;
}
.pill-list li:after {
    display: none;
    content: none;
}
.calendario_detalle .pill-list li:after {
    display: none !important;
    content: none !important;
}
.fechas-salida.modern summary {
    cursor: pointer;
    font-weight: 800;
    color: #102a4e;
    list-style: none;
    letter-spacing: .01em;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #eaf2ff;
    border: 1px solid #c9d9f5;
    border-radius: 12px;
}
.fechas-salida.modern summary::-webkit-details-marker {
    display: none;
}
.fechas-salida.modern summary::after {
    content: "\25be";
    font-size: 0.75rem;
    color: #4b6bb4;
    margin-left: auto;
    transition: transform 0.2s ease;
}
.fechas-salida.modern[open] summary::after {
    transform: rotate(-180deg);
}
.fechas-salida.modern {
    border: 1px solid #dbe5f5;
    border-radius: 14px;
    padding: 12px;
    background: linear-gradient(180deg, #f7fbff 0%, #eff4fb 100%);
    box-shadow: 0 6px 24px rgba(15, 37, 71, 0.08);
}
.fechas-salida.modern[open] summary {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: inset 0 -1px 0 #dbe5f5;
}
.salida-fechas {
    display: grid;
    gap: 12px;
    margin-top: 12px;
    padding-top: 4px;
}

.salidas-panel {
    background: #f8fbff;
    border: 1px solid #dbe5f5;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 12px 32px rgba(16, 42, 78, 0.06);
}

.salidas-panel .block-title {
    margin-bottom: 10px;
    letter-spacing: .02em;
    color: #0f2547;
}

.salidas-panel #color-calendarReponsive {
    background: #fff;
    border: 1px solid #e1e8f5;
    border-radius: 14px;
    padding: 10px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 6px 12px rgba(16, 42, 78, 0.05);
}

.salidas-panel .events-displayReponsive {
    margin-top: 12px;
    border: 1px dashed #c9d6eb;
    border-radius: 12px;
    padding: 10px 12px;
    background: #f4f7fc;
    color: #0f2547;
    font-weight: 600;
}

.salidas-panel .events-displayReponsive .event-title {
    font-weight: 700;
}

.salidas-panel .salida-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border: 1px solid #e1e8f5;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(15, 37, 71, 0.06);
}

.salidas-panel .salida-row__month {
    font-weight: 700;
    color: #102a4e;
    letter-spacing: .01em;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.salidas-panel .salida-row__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-left: auto;
}

.salidas-panel .salida-row--full {
    justify-content: flex-start;
}
@media (max-width: 768px) {
    .salidas-panel .salida-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .salidas-panel .salida-row__buttons {
        width: 100%;
    }

    .panel-title {
        font-size: 1.1rem;
    }
}
