.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #222;
    color: #fff;
    padding: 20px;
    box-sizing: border-box;
    display: none; /* Inizialmente nascosto, gestito via JS */
    z-index: 9999;
    font-family: sans-serif;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-banner p {
    margin: 0 20px 10px 0;
    flex: 1;
    min-width: 300px;
}

.cookie-banner a {
    color: #3498db;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.btn-accept { background-color: #2ecc71; color: white; }
.btn-reject { background-color: #e74c3c; color: white; }