.main-header nav {
    height: 67px;
}

.main-header ul li.active {
    position: relative;
    z-index: 1;
}

.main-header ul li.active::after {
    content: "";
    position: absolute;
    top: -23px;
    left: -16px;
    bottom: 0;
    width: 100%;
    background-color: #336988;
    padding: 23px 16px;
    z-index: -1;
    height: 100%;
    height: 67px;
    right: 0;
    width: calc(100% + 32px);
    border-bottom: 3px solid #ffffff;
}

.wpfc-calendar-wrapper *, .ui-selectmenu-menu {
    font-size: 16px !important;
}

.wpfc-calendar-wrapper h2 {
    font-size: 25px !important;
}

@media (min-width: 1536px) and (max-width: 1660px) {
    #menu-ocp_main-menu {
        gap: 42px !important;
    }
}

@media (max-width: 1535px) {
    #menu-ocp_main-menu {
        justify-content: space-between;
    }
}

@media (max-width: 1620px) {
    /* .desktop-navigation-bar {
        overflow-x: auto;
        overflow-y: hidden;
    }*/
    /* .main-header ul li.active::after {
        content: unset
    }
    .main-header ul li.active {
        background-color: #336988;
        padding: 23px 16px;
        height: 67px;
        width: 84px;
    } */
}

/* FAQ Accordion Styles */
.faq-content {
    transition: all 0.3s ease-in-out;}

.faq-block-contentshow {
    max-height: 100%;
}

.faq-icon {
    transition: transform 0.3s ease-in-out;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* FAQ Accordion Styles */
.faq-content {
    transition: all 0.3s ease-in-out;
}
.faq-content p:last-of-type .faq-block-answer p:first-of-type{
    margin-bottom: 0 !important;
}

.faq-content p:first-of-type , .faq-block-answer p:first-of-type{
    margin-top: 0 !important;
}

.faq-block-content.show {
    max-height: 400px;
    overflow-y: auto;
}

.faq-icon {
    transition: transform 0.3s ease-in-out;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active h3, .faq-block-item.active h3{
    color: #1C66A6 !important;
}

.faq-item.active {
    box-shadow: unset !important
}

/* Tailwind Custom Scrollbar */
.faq-block-content.show::-webkit-scrollbar {
    width: 8px !important;
}

.faq-block-content.show::-webkit-scrollbar-track {
    background: #f1f1f1 !important;
    border-radius: 8px !important;
}

.faq-block-content.show::-webkit-scrollbar-thumb {
    background-color: #1C66A6 !important;
    border-radius: 8px !important;
    border: 2px solid #f1f1f1 !important;
}

.faq-block-content.show::-webkit-scrollbar-thumb:hover {
    background-color: #155a94 !important;
}

/* stepper slider css */
.stepper-slider-section-step-button.stepper-slider-section-step-button-active {
    position: relative;
    border: 2px solid #F38B44;
}

.stepper-slider-section-step-button.stepper-slider-section-step-button-active:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background-color: #F38B44;
    border-radius: 100%;
}
/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    max-height: 90vh;
    overflow: hidden;
    width: 90%;
    max-width: 800px;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px 16px 24px;
    border-bottom: 1px solid #e5e7eb;
}

.modal-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.modal-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    color: #6b7280;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close-btn:hover {
    background-color: #f3f4f6;
    color: #374151;
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
    max-height: 60vh;
}

.modal-body h3 {
    font-size: 32px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.modal-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px 24px 24px;
    border-top: 1px solid #e5e7eb;
}

.modal-close-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #1c66a6;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    font-family: Arial, Helvetica, sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-close-btn-secondary:hover {
    background-color: #003d80;
}

.modal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.modal-table th {
    background-color: #f9fafb;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
    font-family: Arial, Helvetica, sans-serif;
}

.modal-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #f3f4f6;
    color: #1f2937;
    font-family: Arial, Helvetica, sans-serif;
}

.modal-table tr:hover {
    background-color: #f9fafb;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-table {
        font-size: 14px;
    }
    
    .modal-table th,
    .modal-table td {
        padding: 8px 12px;
    }
}