﻿/* Banner Cookie */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #111;
    color: white;
    padding: 20px 40px;
    z-index: 3000;
    display: none; /* Nascosto di default */
    border-top: 2px solid #ffa400;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.5);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.cookie-text {
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept {
    background-color: #ffa400;
    color: #000;
    border: none;
    padding: 8px 20px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

    .btn-accept:hover {
        background-color: #ffb733;
    }
