/* Custom Schedule Section */
.custom-schedule-title {
    margin-bottom: 40px;
}

.custom-sub-title {
    display: inline-block;
    background-color: #eaf2ee;
    color: #4a9e73;
    padding: 6px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.custom-schedule-title h2 {
    font-size: 42px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.custom-schedule-title h2 .text-blue {
    color: #0A2540;
}

.custom-schedule-title h2 .text-orange {
    color: #EF7C00;
}

.custom-title-divider {
    display: flex;
    justify-content: center;
    width: 150px;
    margin: 0 auto 50px auto;
}

.custom-title-divider::before {
    content: '';
    display: block;
    width: 50%;
    height: 2px;
    background-color: #0A2540;
}

.custom-title-divider::after {
    content: '';
    display: block;
    width: 50%;
    height: 2px;
    background-color: #EF7C00;
}

/* Tabs Styling */
.custom-schedule-tabs .custom-nav-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    border: none;
    margin-bottom: 50px;
    padding-left: 0;
}

.custom-nav-tabs .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 110px;
    background-color: #fff !important;
    border: 1px solid #348B4B !important;
    border-radius: 6px !important;
    padding: 20px;
    text-decoration: none;
    transition: all 0.3s;
    color: #00407A !important;
}

.custom-nav-tabs .nav-link .day-text {
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.custom-nav-tabs .nav-link .date-text {
    font-size: 18px;
    font-weight: 400;
    display: block;
}

/* Active State */
.custom-nav-tabs .nav-link.active {
    background: #0A2540 !important;
    border: 1px solid #0A2540 !important;
    color: #fff !important;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.custom-nav-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 15%;
    width: 70%;
    height: 4px;
    background-color: #EF7C00;
    border-radius: 2px 2px 0 0;
}

/* Schedule Content Colors */
.gt-event-schedule-content h3 a {
    color: #0A2540 !important;
}

.gt-event-schedule-content .gt-event-list li i,
.gt-event-schedule-content .gt-list li i {
    color: #0A2540 !important;
}

.gt-event-button .gt-theme-btn {
    background-color: #0A2540 !important;
    color: #fff !important;
}

.gt-event-button .gt-theme-btn:hover {
    background-color: #EF7C00 !important;
}

@media (max-width: 991px) {
    .custom-schedule-title h2 { font-size: 32px; }
    .custom-nav-tabs .nav-link { width: 180px; height: 90px; }
    .custom-nav-tabs .nav-link .day-text, .custom-nav-tabs .nav-link .date-text { font-size: 15px; }
}

@media (max-width: 767px) {
    .custom-nav-tabs { flex-direction: column; align-items: center; }
    .custom-nav-tabs .nav-link { width: 100%; max-width: 300px; height: auto; padding: 15px; }
}

