/* Circular Tabs Styling - 16e95981 */

/* Tab heading container: center the tabs */
.e-n-tabs-heading {
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important;
    gap: 18px !important;
    position: relative !important;
}

/* Individual tab buttons: circle shape */
.e-n-tab-title {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    min-height: 64px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #2D6B4C !important;
    color: #FFFFFF !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-align: center !important;
    padding: 8px !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    transform: translateY(0) !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
    line-height: 1.2 !important;
    overflow: hidden !important;
    border: 3px solid transparent !important;
    flex-shrink: 0 !important;
}

.e-n-tab-title:hover {
    background-color: #1a5a3d !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25) !important;
}

/* Active tab: bigger, shifted down, darker */
.e-n-tab-title.e-active {
    width: 88px !important;
    height: 88px !important;
    min-width: 88px !important;
    min-height: 88px !important;
    background-color: #0E402F !important;
    color: #FFFFFF !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    transform: translateY(18px) !important;
    box-shadow: 0 6px 20px rgba(14, 64, 47, 0.4) !important;
    border: 3px solid #CCF0DE !important;
    z-index: 2 !important;
}

/* Ensure text inside tabs is styled */
.e-n-tab-title .e-n-tab-title-text {
    color: #FFFFFF !important;
    white-space: normal !important;
    text-align: center !important;
    line-height: 1.2 !important;
    word-break: break-word !important;
}

/* Remove default underline/border decorations */
.e-n-tabs .e-n-tabs-heading::after,
.e-n-tabs .e-n-tabs-heading::before {
    display: none !important;
}

/* Add some bottom margin to heading to account for the active tab shift */
.e-n-tabs-heading {
    margin-bottom: 24px !important;
    padding-bottom: 10px !important;
}
