/* Stili per il banner dei cookie */
#cookie-banner {
    background-color: white;
    border-top: 3px solid var(--primary-color);
    font-size: 0.95rem;
}

#cookie-banner .cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

#cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 280px;
}

#cookie-banner a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

#cookie-accept {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

#cookie-reject {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid #ddd;
    font-weight: 600;
}

#cookie-reject:hover {
    background-color: #f0f0f0;
}

@media screen and (max-width: 768px) {
    #cookie-banner .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-buttons {
        width: 100%;
        display: flex;
        gap: 10px;
        flex-direction: row;
    }
    
    #cookie-accept, #cookie-reject {
        flex: 1;
        padding: 12px 16px;
        font-size: 0.9rem;
        font-weight: 600;
        height: auto;
        line-height: 1.4;
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
    }
    
    #cookie-accept {
        color: white;
    }
    
    #cookie-reject {
        color: var(--text-color);
    }
}