/* General Styles */
.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    font-family: 'Arial', sans-serif;
    display: none; /* Initially hidden */
}

.cookie-popup-content {
    background-color: #1b1b1b;
    color: #ffffff;
    border-radius: 10px;
    padding: 20px 30px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s ease-out;
}

.cookie-popup h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #007bff;
}

.cookie-popup p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cookie-popup a {
    color: #007bff;
    text-decoration: none;
}

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

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

.cookie-buttons .btn {
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    font-weight: bold;
}

.cookie-buttons .btn.btn-accept {
    background-color: #007bff;
    color: white;
}

.cookie-buttons .btn.btn-accept:hover {
    background-color: #0056b3;
}

.cookie-buttons .btn.btn-reject {
    background-color: #dc3545;
    color: white;
}

.cookie-buttons .btn.btn-reject:hover {
    background-color: #a71d2a;
}

.cookie-buttons .btn.btn-customize {
    background-color: #ffc107;
    color: black;
}

.cookie-buttons .btn.btn-customize:hover {
    background-color: #e0a800;
}

/* Cookie Settings Modal */
.cookie-settings {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.cookie-modal {
    background-color: #292929;
    color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    text-align: center;
}

.cookie-modal-actions .btn-save {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
