/* GDPR Cookie Consent Popup Styles */
.gdpr-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    animation: fadeIn 0.3s ease-in forwards;
}

.gdpr-popup {
    background: white;
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: scale(0.9);
    animation: slideUp 0.3s ease-out forwards;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: scale(0.9) translateY(20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.gdpr-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.gdpr-popup-close:hover {
    background-color: #f0f0f0;
    color: #333;
}

.gdpr-popup-icon {
    text-align: center;
    margin-bottom: 20px;
}

.gdpr-popup-icon i {
    font-size: 48px;
    color: #3d6769;
}

.gdpr-popup h2 {
    font-size: 24px;
    font-weight: bold;
    color: #3d6769;
    margin-bottom: 15px;
    text-align: center;
}

.gdpr-popup p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.gdpr-popup-links {
    margin: 20px 0;
    padding: 15px;
    background-color: #f5f7fa;
    border-radius: 8px;
}

.gdpr-popup-links a {
    color: #3d6769;
    text-decoration: underline;
    font-weight: 500;
}

.gdpr-popup-links a:hover {
    color: #2d4d4f;
}

.gdpr-popup-button {
    width: 100%;
    padding: 15px;
    background-color: #3d6769;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.gdpr-popup-button:hover {
    background-color: #2d4d4f;
}

.gdpr-popup-button:active {
    transform: scale(0.98);
}

/* Hide popup when closed */
.gdpr-popup-overlay.hidden {
    display: none;
}

/* Responsive design */
@media (max-width: 600px) {
    .gdpr-popup {
        padding: 20px;
        max-width: 100%;
    }
    
    .gdpr-popup h2 {
        font-size: 20px;
    }
    
    .gdpr-popup p {
        font-size: 14px;
    }
    
    .gdpr-popup-button {
        font-size: 16px;
        padding: 12px;
    }
}
