/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

.cookie-header h5 {
    margin: 0 0 10px 0;
    font-weight: bold;
}

.cookie-body {
    margin-bottom: 15px;
}

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

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
}

.cookie-settings-content {
    background-color: #fff;
    border-radius: 5px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.cookie-settings-header h5 {
    margin: 0;
    font-weight: bold;
}

.cookie-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.cookie-settings-body {
    padding: 15px;
}

.cookie-category {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #f8f9fa;
}

.cookie-category-info {
    background: none;
    border: none;
    color: #0d6efd;
    cursor: pointer;
    font-size: 14px;
}

.cookie-category-description {
    padding: 10px 15px;
    border-top: 1px solid #eee;
    display: none;
}

.cookie-settings-footer {
    padding: 15px;
    border-top: 1px solid #eee;
    text-align: right;
}

/* Cookie Policy Link */
.cookie-policy-link {
    display: none; /* Nascosto di default, mostrato dopo il consenso */
}

.cookie-policy-link button {
    background-color: transparent;
    border: none;
    padding: 0;
    font-size: 12px;
    cursor: pointer;
    color: #6c757d;
    text-decoration: underline;
}

.cookie-policy-link button:hover {
    color: #495057;
}

.cookie-policy-link button {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-policy-link button:hover {
    background-color: #e9ecef;
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-footer {
        flex-direction: column;
    }
    
    .cookie-footer button {
        width: 100%;
    }
}