/* Inserisci in website/assets/css/main.css o overrides.css */
.pricing-card.popular-plan {
    border: 2px solid var(--bs-warning);
    /* o un colore primario del tuo tema */
}

.pricing-card .badge.mt-n2 {
    /* Per posizionare il badge leggermente sopra il bordo superiore */
    transform: translate(-50%, -50%) !important;
}

.pricing-card .card-header .card-title {
    color: var(--bs-dark, #212529);
    /* Utilizza la variabile Bootstrap --bs-dark o un fallback */
}

.btn-red {
    background-color: #dc3545 !important;
}

.btn-li {
    width: 100%;
    justify-content: center !important;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 15px;
    text-align: center;
    font-size: 14px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-banner p {
    margin: 0;
    flex: 1;
}

.cookie-banner a {
    color: #4aa3df;
    text-decoration: underline;
}

.cookie-button {
    background-color: #4aa3df;
    color: #fff;
    border: none;
    padding: 8px 12px;
    margin-left: 10px;
    cursor: pointer;
    border-radius: 4px;
}

.language-selector {
    font-size: 15px;
    font-family: var(--nav-font);
}

.btn-elegant,
.btn-elegant:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 8px 25px;
    margin: 0 0 0 30px;
    border-radius: 50px;
    transition: 0.3s;
}

.btn-elegant:hover,
.btn-elegant:focus:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
    .btn-elegant {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 15px;
    }
}
