/* ===============================
   Schedule Card
=================================*/
.schedule-card {
    background: #fff;
    border-radius: 10px;
}

    .schedule-card:hover {
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .schedule-card .border-end {
        border-right: 1px solid #e5e5e5 !important;
    }


/* ===============================
   Material Icons
=================================*/
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}


/* ===============================
   Navigation Tabs
=================================*/
.nav-tabs {
    border-bottom: none;
}

    .nav-tabs .nav-link {
        border: none;
        border-bottom: 3px solid transparent;
    }

        .nav-tabs .nav-link.active {
            border-bottom: 3px solid #000;
        }

        .nav-tabs .nav-link:hover {
            border-bottom: 3px solid #ccc;
        }

/* Custom tab styling */
.tab-link {
    font-size: 0.95rem;
    padding: 6px 12px;
    border: none;
    border-bottom: 3px solid transparent;
}

    .tab-link.active {
        border-bottom: 3px solid #000;
        font-weight: 600;
    }


/* ===============================
   Compact Buttons
=================================*/
.btn-compact {
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: 6px;
}

.btn-enroll {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 600;
    padding: 8px 18px;
    min-height: 38px;
    background: linear-gradient(111.02deg, #f5693f, #f53f71);
}

    .btn-enroll .btn-icon {
        font-size: 18px;
        line-height: 1;
        display: flex;
        align-items: center;
    }

    .btn-enroll .btn-text {
        display: flex;
        align-items: center;
    }

.register-btn {
    font-weight: 600;
    border-radius: 8px;
    padding: 10px 28px;
}


/* ===============================
   Desktop Spacing
=================================*/
@media (min-width: 992px) {
    .action-buttons {
        gap: 10px;
    }
}


/* ===============================
   Detail Rows (Modal Left Panel)
=================================*/
.detail-row {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

    .price-row:last-child {
        border-bottom: none;
    }

.final-cost {
    font-weight: 700;
}


/* ===============================
   Dark Right Panel (Modal)
=================================*/
.dark-panel {
    background: linear-gradient(135deg, #1e2228, #2b313a);
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}


/* ===============================
   Benefit List
=================================*/
.benefit-list {
    list-style: none;
    padding-left: 0;
}

    .benefit-list li {
        margin-bottom: 8px;
        padding-left: 20px;
        position: relative;
        font-size: 0.9rem;
    }

        .benefit-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #ffffff;
        }


/* ===============================
   Time Badge
=================================*/
.time-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
}

.late-night-premium {
    background: linear-gradient(135deg, #FFD54F, #FFB300);
    color: #212529;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.time-icon {
    font-size: 17px;
    line-height: 1;
    display: flex;
    align-items: center;
    color: #212529;
}

.time-text {
    display: flex;
    align-items: center;
}

.tooltip-inner {
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 6px;
}

/* ===============================
   Custom Tab Buttons
=================================*/

.custom-tab-buttons {
    border: none;
    gap: 12px;
}

    /* Remove Bootstrap tab styling */
    .custom-tab-buttons .nav-link {
        border: none !important;
        /*background: none;*/
    }

/* Default button style */
.custom-tab-btn {
    background: #e9ecef;
    border-radius: 10px;
    padding: 10px 18px;
    font-weight: 600;
    text-align: center;
    color: #0d6efd;
    transition: all 0.2s ease;
    width: 100%;
}

    /* Active */
    .custom-tab-btn.active {
        background: linear-gradient(111.02deg, #f5693f, #f53f71);
        color: #fff !important;
        box-shadow: 0 4px 12px rgba(245, 63, 113, 0.3);
    }

    /* Hover */
    .custom-tab-btn:hover {
        background: #c4ccd4;
    }

/* ===== MOBILE ===== */
@media (max-width: 991px) {
    .custom-tab-buttons {
        flex-direction: column;
    }

        .custom-tab-buttons .nav-item {
            width: 100%;
        }

    .custom-tab-btn {
        width: 100%;
        display: block;
    }
}

/* ===== DESKTOP ===== */
@media (min-width: 992px) {
    .custom-tab-buttons {
        flex-direction: row;
    }

    .custom-tab-btn {
        width: auto;
        min-width: 220px;
    }
}

/* ===============================
   Early Bird Ribbon
=================================*/
.top-badge {
    display: inline-block;
    background: linear-gradient(90deg, #ff4d6d, #ff758f);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}