/* Overlay */
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
    backdrop-filter: blur(5px);
}

/* Modal */
.cookie-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 10000;
    max-width: 900px;
    width: 90%;
    animation: fadeIn 0.5s ease-in-out;
}

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

.cookie-modal-content {
    text-align: center;
    font-family: 'Arial', sans-serif;
}

.cookie-modal h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #333;
}

.cookie-modal p {
    font-size: 1em;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #666;
}

.cookie-modal-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cookie-modal-buttons button {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cookie-modal-buttons button:hover {
    transform: scale(1.05);
}

#accept-cookies {
    background-color: #4CAF50;
    color: white;
}

#accept-cookies:hover {
    background-color: #45a049;
}

#deny-cookies {
    background-color: #f44336;
    color: white;
}

#deny-cookies:hover {
    background-color: #e53935;
}
