#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(30, 30, 30, 0.95);
    /* colore scuro simile al sito */
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

#cookie-banner p {
    margin: 0;
    padding-right: 10px;
}

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

#cookie-banner button {
    background-color: #4f9ef8;
    border: none;
    color: white;
    padding: 8px 14px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
}

#cookie-banner button:hover {
    background-color: #357ae8;
}