/* ...existing code... */

/* Stili per il Popup Cookie */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(33, 37, 41, 0.95); /* Colore scuro semi-trasparente */
    color: white;
    padding: 20px;
    z-index: 1060; /* Sopra altri elementi */
    display: none; /* Nascosto di default */
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-popup-content {
    max-width: 1140px; /* Allineato con il container di Bootstrap */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-popup p {
    margin: 0;
    font-size: 14px;
    text-align: left;
    flex-grow: 1;
    color: #ffffff;
}

.cookie-popup a {
    color: #007bff; /* Colore link di Bootstrap */
    text-decoration: underline;
}

.cookie-popup a:hover {
    color: #0056b3;
}

#accept-cookie-btn {
    white-space: nowrap; /* Evita che il testo del pulsante vada a capo */
}

/* Responsive per schermi piccoli */
@media (max-width: 768px) {
    .cookie-popup-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-popup p {
        text-align: center;
        margin-bottom: 15px;
    }
}