/* Stili per la barra dei cookie */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #222;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.5);
}

.cookie-bar a {
    color: #cf6fc1;
    text-decoration: none;
}

.cookie-bar a:hover {
    text-decoration: underline;
}

.cookie-bar button {
    background-color: #cf6fc1;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-left: 20px;
}

@media (max-width: 600px) {
    .cookie-bar {
        flex-direction: column;
        text-align: center;
    }

    .cookie-bar button {
        margin-top: 10px;
        margin-left: 0;
    }
}