/* 
    PRICING TOGGLE FIX
    Ensures the active button has white text and proper z-index.
    Updated with ID selectors for maximum specificity.
*/

/* Base Button - Grey */
.billing-toggle-wrapper .billing-toggle-btn,
button.billing-toggle-btn,
#btnMonthly,
#btnYearly {
    color: #64748b !important;
    z-index: 5 !important;
    font-weight: 600 !important;
    background: transparent !important;
    position: relative !important;
    mix-blend-mode: normal !important;
    transition: color 0.3s ease !important;
}

/* Active Button - White */
.billing-toggle-wrapper .billing-toggle-btn.active,
button.billing-toggle-btn.active,
#btnMonthly.active,
#btnYearly.active {
    color: #ffffff !important;
    z-index: 5 !important;
    font-weight: 700 !important;
    mix-blend-mode: normal !important;
}

/* Hover State */
.billing-toggle-btn:hover,
#btnMonthly:hover,
#btnYearly:hover {
    color: #334155 !important;
}

.billing-toggle-btn.active:hover,
#btnMonthly.active:hover,
#btnYearly.active:hover {
    color: #ffffff !important;
}

/* Slider - MUST be behind buttons */
.billing-toggle-wrapper .billing-toggle-slider {
    z-index: 1 !important;
    background: linear-gradient(135deg, #1E5CAA 0%, #2563eb 100%) !important;
    position: absolute !important;
}

/* Wrapper - Ensure context */
.billing-toggle-wrapper {
    position: relative !important;
    isolation: isolate !important;
    display: inline-flex !important;
    background: #f1f5f9 !important;
}