/* Toggle Switch Styles */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .toggle-slider {
    background-color: rgb(0, 20, 44); /* Bleu foncé spécifié */
}

input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

.toggle-slider.round {
    border-radius: 34px;
}

.toggle-slider.round:before {
    border-radius: 50%;
}

.monthly-price, .annual-price {
    transition: opacity 0.3s ease;
}

.pricing-period-monthly, .pricing-period-annual {
    font-weight: 500;
    transition: all 0.3s ease;
}

.fw-bold {
    font-weight: 700 !important;
}

.toggle-discount {
    font-size: 12px;
}

.pricing-plan span.price-period {
    font-size: 80% !important;
    display: inline-block !important;
    white-space: nowrap !important;
    vertical-align: middle !important;
    margin-left: 2px !important;
    font-weight: normal !important;
} 