:root {
    --brand-dark: #0b1f3a;
    --brand-accent: #14b8a6;
    --bg-main: #f8fafc;
    /* Vista pública: cabeceras de tabla / modal (referencia corporativa) */
    --public-table-header: #5b7fcf;
    --public-text-muted: #6b7280;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-main);
    color: var(--brand-dark);
    margin: 0;
    padding: 2rem;
}

.admin-card {
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    border-radius: 2rem;
    box-shadow: 0 16px 30px -18px rgb(15 23 42 / 0.22);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

header {
    background: linear-gradient(135deg, var(--brand-dark) 0%, #1e293b 100%);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    color: white;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.status-pill {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-logout {
    border: 1px solid rgb(255 255 255 / 0.25);
    background: rgb(255 255 255 / 0.12);
    color: #fff;
    border-radius: 9999px;
    padding: 0.42rem 0.8rem;
    font-size: 0.72rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-logout:hover {
    background: rgb(20 184 166 / 0.35);
    border-color: rgb(20 184 166 / 0.7);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 8px #4ade80;
}

.toolbar {
    padding: 1.5rem 1.5rem 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.search-with-chips {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.65rem;
    flex: 1;
    min-width: 220px;
    justify-content: flex-end;
}

.search-with-chips .search-input {
    flex: 1;
    min-width: 180px;
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
}

.filter-chip {
    border: 1px solid #cbd5e1;
    background: #fff;
    color: #475569;
    padding: 0.45rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.72rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}

.filter-chip:hover {
    border-color: #94a3b8;
    background: #f8fafc;
}

.filter-chip.active {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: #fff;
}

.filter-chip.active:hover {
    background: var(--brand-accent);
    border-color: var(--brand-accent);
}

.tabs {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f1f5f9;
    border-radius: 9999px;
    padding: 0.35rem;
}

.tab-btn {
    border: none;
    background: transparent;
    color: #475569;
    padding: 0.55rem 1rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.2s ease;
}

.tab-btn.active {
    background: var(--brand-dark);
    color: #fff;
    box-shadow: 0 8px 18px -12px rgb(11 31 58 / 0.6);
}

.search-input {
    min-width: 230px;
    border: 1px solid #cbd5e1;
    border-radius: 9999px;
    padding: 0.68rem 1rem;
    background: #fff;
    color: #1e293b;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-input:focus {
    border-color: #94a3b8;
    box-shadow: 0 0 0 3px rgb(148 163 184 / 0.2);
}

.table-container {
    padding: 0 1.5rem 1.5rem;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 0.75rem;
}

th {
    padding: 0.75rem 1.5rem;
    color: #64748b;
    font-size: 0.72rem;
    text-transform: uppercase;
    text-align: left;
    font-weight: 700;
}

tbody tr {
    background: white;
    transition: 0.2s;
}

tbody tr td {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

tbody tr td:first-child {
    border-left: 1px solid #f1f5f9;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

tbody tr td:last-child {
    border-right: 1px solid #f1f5f9;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

tbody tr:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.05);
}

.btn-update {
    background: var(--brand-dark);
    color: #fff;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.75rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-update:hover {
    background: var(--brand-accent);
    color: white;
    transform: translateY(-1px);
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    z-index: 50;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 560px;
    max-height: 80vh;
    border-radius: 2rem;
    padding: 1.5rem 1.5rem 0;
    position: relative;
    box-shadow: 0 30px 45px -25px rgb(15 23 42 / 0.45);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: none !important;
}

.modal-scroll {
    overflow-y: auto;
    padding: 0.5rem 0.5rem 0 0;
    scrollbar-width: thin;
    scrollbar-color: var(--brand-accent) transparent;
    border: none !important;
    background: #fff;
}

.modal-scroll::-webkit-scrollbar {
    width: 8px;
}

.modal-scroll::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 9999px;
}

.modal-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--brand-dark), var(--brand-accent));
    border-radius: 9999px;
    border: 2px solid #ffffff;
}

.modal-scroll::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--brand-accent), var(--brand-dark));
}

.modal-actions {
    position: sticky;
    bottom: 0;
    background: #fff;
    border: none !important;
    padding: 1rem 0 1.25rem;
    margin-top: 0.75rem;
}

.cabin-card {
    background: #f8fafc;
    border-radius: 18px;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.input-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.input-box label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 8px;
}

.cabin-input {
    flex: 1;
    width: 100%;
    padding: 12px 0px !important;
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    font-size: 16px;
    text-align: center;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    appearance: textfield;
    -moz-appearance: textfield;
}

.cabin-input::-webkit-outer-spin-button,
.cabin-input::-webkit-inner-spin-button {
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
}

.cabin-input:focus {
    outline: none;
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 3px rgb(20 184 166 / 0.18);
}

.btn-save {
    width: 100%;
    background: var(--brand-dark);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    margin-top: 0;
}

.btn-save:hover {
    background: var(--brand-accent);
}

.btn-secondary {
    width: 100%;
    background: none;
    border: none;
    color: #94a3b8;
    margin-top: 0.7rem;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

.muted {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 400;
}

.toast {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 10000;
    background: #0f172a;
    color: #fff;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    box-shadow: 0 16px 28px -14px rgb(15 23 42 / 0.65);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    font-size: 0.85rem;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top, var(--brand-dark) 0%, #0b1220 45%, #050a14 100%);
    padding: 1.5rem;
}

.login-card {
    width: 100%;
    max-width: 430px;
    background: rgb(15 23 42 / 0.88);
    border: 1px solid rgb(148 163 184 / 0.22);
    border-radius: 1.5rem;
    box-shadow: 0 30px 50px -30px rgb(0 0 0 / 0.75);
    padding: 1.8rem;
    color: #e2e8f0;
}

.login-title {
    margin: 0;
    font-size: 1.55rem;
    color: #f8fafc;
}

.login-subtitle {
    margin: 0.45rem 0 1.35rem;
    color: #94a3b8;
    font-size: 0.9rem;
}

.login-form {
    display: grid;
    gap: 0.9rem;
}

.login-label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    color: #94a3b8;
}

.login-input {
    width: 100%;
    border: 1px solid #334155;
    background: #0f172a;
    color: #f8fafc;
    border-radius: 0.75rem;
    padding: 0.78rem 0.85rem;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
}

.login-input:focus {
    outline: none;
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 3px rgb(20 184 166 / 0.2);
}

.login-btn {
    margin-top: 0.5rem;
    width: 100%;
    border: none;
    background: linear-gradient(135deg, var(--brand-dark) 0%, #133867 100%);
    color: #fff;
    border-radius: 0.8rem;
    padding: 0.82rem 1rem;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.login-btn:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-accent) 100%);
}

.login-error {
    min-height: 1.2rem;
    font-size: 0.82rem;
    color: #fca5a5;
}

/* Fila de tabla clickeable (importador / secretaría) */
.trip-row--clickable {
    cursor: pointer;
    transition: background 0.15s ease;
}

.trip-row--clickable:hover {
    background: #f1f5f9;
}

.trip-edit-field {
    width: 100%;
    border: 1px solid #e0e6ed;
    border-radius: 10px;
    padding: 0.75rem 0.85rem;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.25rem;
}

.trip-edit-field:focus {
    outline: none;
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 3px rgb(20 184 166 / 0.15);
}

.table-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
}

.btn-inline {
    padding: 0.45rem 0.75rem;
    font-size: 0.68rem;
}

/* Edición inline de availability (secretaría) */
.avail-inline-input {
    min-width: 3.5rem;
    max-width: 8rem;
    padding: 0.4rem 0.55rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.avail-inline-input:focus {
    outline: none;
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 2px rgb(20 184 166 / 0.2);
}

.btn-save-row {
    padding: 0.4rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    background: var(--brand-dark);
    color: #fff;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    transition: background 0.15s ease;
}

.btn-save-row:hover {
    background: var(--brand-accent);
}

.btn-save-row:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.rate-readonly {
    user-select: text;
}

/* Fechas de viaje: texto literal de Supabase (estándar agencias / Japón) */
.table-date-cell {
    color: #64748b;
    font-size: 0.88rem;
    font-weight: 500;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .table-date-cell {
        white-space: normal;
        max-width: 7.5rem;
    }
}

/* —— Vista pública (index raíz) —— */
.public-page .admin-card {
    max-width: 1200px;
}

.public-subnav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    padding: 0 1.5rem 0.75rem;
}

.public-route-chips {
    opacity: 0.92;
}

.public-route-chips .filter-chip {
    font-size: 0.68rem;
    padding: 0.35rem 0.7rem;
}

.month-chip-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1.5rem 1.1rem;
    border-bottom: 1px solid #f1f5f9;
}

.month-chip {
    border: 1px solid #e5e7eb;
    background: #f3f4f6;
    color: #374151;
    padding: 0.55rem 1.15rem;
    border-radius: 9999px;
    font-size: 0.78rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}

.month-chip:hover {
    border-color: #d1d5db;
    background: #e5e7eb;
}

/* Activo: resalte claro con --brand-accent (referencia 9.18.51) */
.month-chip.active {
    background: rgb(20 184 166 / 0.18);
    border-color: var(--brand-accent);
    color: #0f766e;
    box-shadow: 0 0 0 1px rgb(20 184 166 / 0.35);
}

/* Tabla pública: cabecera azul + filas tipo card */
.public-table-wrap {
    padding: 0 1.5rem 1.5rem;
    overflow-x: auto;
}

table.public-schedule {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 0.65rem;
}

.public-schedule thead tr th {
    background: var(--public-table-header);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.85rem 0.75rem;
    text-align: center;
    border: none;
}

.public-schedule thead tr th:first-child {
    border-radius: 10px 0 0 10px;
    padding-left: 1.1rem;
}

.public-schedule thead tr th:last-child {
    border-radius: 0 10px 10px 0;
    padding-right: 1.1rem;
}

.public-schedule thead tr th.th-num {
    text-align: center;
}

.public-schedule thead tr th.th-avail {
    text-align: center;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}

.public-schedule tbody tr.public-card-row td {
    background: #ffffff;
    padding: 1.1rem 0.75rem;
    font-size: 0.88rem;
    vertical-align: middle;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px -8px rgb(15 23 42 / 0.14);
}

.public-schedule tbody tr.public-card-row td:first-child {
    border-left: 1px solid #e5e7eb;
    border-radius: 12px 0 0 12px;
    padding-left: 1.1rem;
}

.public-schedule tbody tr.public-card-row td:last-child {
    border-right: 1px solid #e5e7eb;
    border-radius: 0 12px 12px 0;
    padding-right: 1.1rem;
}

.public-schedule tbody tr.public-card-row:hover td {
    box-shadow: 0 6px 24px -8px rgb(15 23 42 / 0.18);
}

.public-schedule .td-num {
    text-align: center;
    font-weight: 700;
    font-size: 1.05rem;
    color: #111827;
}

.public-schedule .td-center {
    text-align: center;
    color: var(--public-text-muted);
}

.public-schedule .td-route {
    text-align: center;
    font-weight: 700;
    color: var(--brand-dark);
}

.public-schedule .td-rate {
    text-align: center;
    font-weight: 700;
    color: var(--brand-dark);
}

.rate-public-stack {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.rate-public-amount {
    line-height: 1.2;
}

.rate-promo-badge {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #92400e;
    background: #fef3c7;
    border: 1px solid #fcd34d;
    border-radius: 999px;
    padding: 0.1rem 0.45rem;
    line-height: 1.25;
    white-space: nowrap;
}

.public-schedule .td-avail {
    text-align: center;
    vertical-align: middle;
}

/* Badges de género: rojo = women, azul = men, cyan = ALL (alineado con leyenda del modal) */
/* Disponibilidad pública: número + badge de género */
.avail-public-stack {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    flex-wrap: nowrap;
}

.avail-public-num {
    font-weight: 700;
    font-size: 0.95rem;
    color: #3b82f6;
}

.public-gender-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1ch;
    height: auto;
    border-radius: 0;
    font-size: 1rem;
    line-height: 1;
    flex-shrink: 0;
    font-weight: 700;
    background: transparent !important;
    box-shadow: none;
    text-shadow: none;
}

.public-gender-badge--women {
    color: #dc2626;
}

.public-gender-badge--men {
    color: #2563eb;
}

.public-gender-badge--all {
    color: #06b6d4;
}

/* Leyenda del modal de reserva: mismos badges que la tabla */
.modal-legend--badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 0.5rem;
}

.modal-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
    color: #4b5563;
}

.modal-legend-sep {
    color: #cbd5e1;
    font-weight: 400;
    user-select: none;
}

.modal-cabin-table .avail-cell-with-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.modal-cabin-table .avail-cell-with-icon .public-gender-badge {
    font-size: 1rem;
}

.check-io-cell {
    line-height: 1.4;
    text-align: center;
    color: var(--public-text-muted);
    font-size: 0.86rem;
    font-weight: 500;
    white-space: normal;
}

.check-io-line {
    display: block;
    color: #374151;
}

.check-io-sep {
    display: block;
    color: #9ca3af;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: lowercase;
    margin: 0.12rem 0;
}

.avail-public-cell {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    width: 100%;
    font: inherit;
    font-weight: 700;
    font-size: 0.95rem;
    color: #3b82f6;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: color 0.15s ease;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.avail-public-cell:hover {
    color: #2563eb;
    text-decoration: underline;
}

.avail-public-cell--ask {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.modal.is-open {
    display: flex;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    background: #f1f5f9;
    color: #475569;
    border-radius: 9999px;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, color 0.15s ease;
}

.modal-close:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.public-modal .modal-content {
    padding: 2.5rem 1.75rem 1.75rem;
    border-radius: 2.25rem;
    max-width: min(640px, 94vw);
}

.public-modal-title {
    margin: 0 0 1.25rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
}

/* Tablas dentro del modal */
.modal-data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
    margin-bottom: 0.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.modal-data-table thead th {
    background: var(--public-table-header);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    padding: 0.65rem 0.6rem;
    text-align: center;
    border: none;
}

.modal-data-table tbody td {
    padding: 0.7rem 0.65rem;
    border-top: 1px solid #e5e7eb;
    background: #fff;
    color: #374151;
    vertical-align: middle;
}

.modal-data-table tbody tr:first-child td {
    border-top: none;
}

.modal-data-table .mdt-left {
    text-align: left;
}

.modal-data-table .mdt-center {
    text-align: center;
}

.modal-cabin-table .mdt-room {
    text-align: left;
    font-weight: 600;
    color: #111827;
    max-width: 14rem;
}

.modal-cabin-table .mdt-cap,
.modal-cabin-table .mdt-avail {
    text-align: center;
    font-weight: 600;
}

.modal-cabin-table .mdt-avail {
    color: #3b82f6;
}

.modal-legend {
    margin: 0.85rem 0 1.1rem;
    font-size: 0.78rem;
    color: var(--public-text-muted);
    text-align: center;
    line-height: 1.5;
}

.modal-scroll--public {
    overflow-x: auto;
    overflow-y: visible;
    padding: 0;
    margin-bottom: 0.25rem;
}

.modal-actions--public {
    display: flex;
    justify-content: center;
    padding: 1.25rem 0 0.25rem;
    margin-top: 0.5rem;
}

.btn-book-public {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-width: 220px;
    padding: 1rem 2.75rem;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: #ffffff !important;
    text-decoration: none !important;
    background: var(--public-table-header);
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    box-shadow: 0 10px 28px -12px rgb(91 127 207 / 0.75);
    transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

.btn-book-public:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
    box-shadow: 0 14px 32px -10px rgb(91 127 207 / 0.85);
}

.public-brand-foot {
    text-align: center;
    padding: 1.5rem 1rem 0;
    font-size: 0.75rem;
    color: #94a3b8;
}

.public-brand-foot a {
    color: #64748b;
    text-decoration: none;
}

.public-brand-foot a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .month-chip-row {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.65rem;
    }

    .public-schedule thead tr th,
    .public-schedule tbody tr.public-card-row td {
        padding-left: 0.55rem;
        padding-right: 0.55rem;
        font-size: 0.72rem;
    }

    .public-schedule .td-num {
        font-size: 0.95rem;
    }
}
