.gdpr-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.5s ease-in-out;
}

.gdpr-popup {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    max-width: 650px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-out;
}

.gdpr-popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0e8b34, #007bff);
    border-radius: 12px 12px 0 0;
}

.gdpr-popup h2 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.gdpr-popup h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0e8b34, #007bff);
    border-radius: 3px;
}

.gdpr-popup p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.gdpr-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.gdpr-button {
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gdpr-accept {
    background: linear-gradient(135deg, #0e8b34, #007bff);
    color: white;
    box-shadow: 0 4px 15px rgba(14, 139, 52, 0.3);
}

.gdpr-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 139, 52, 0.4);
}

.gdpr-settings {
    background-color: #f8f9fa;
    color: #333;
    border: 2px solid #e9ecef;
}

.gdpr-settings:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
}

.gdpr-details {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.gdpr-details h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: #333;
    font-weight: 600;
}

.gdpr-details ul {
    list-style-type: none;
    padding-left: 0;
}

.gdpr-details li {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    background-color: white;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.gdpr-details li:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gdpr-details input[type="checkbox"] {
    margin-right: 1rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.gdpr-details label {
    cursor: pointer;
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.cookie-description {
    font-size: 0.9rem;
    color: #666;
    margin: 0.5rem 0 0 2rem;
    line-height: 1.4;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .gdpr-popup {
        padding: 1.5rem;
    }
    
    .gdpr-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .gdpr-button {
        width: 100%;
        text-align: center;
    }
    
    .gdpr-popup h2 {
        font-size: 1.5rem;
    }
    
    .gdpr-popup p {
        font-size: 1rem;
    }
} 