/* 🔥 Cookie Popup Styling */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #3A57E8;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    display: none;
    max-width: 90%;
    width: 400px;
    z-index: 9999;
    animation: fadeIn 0.5s ease-in-out;
}

/* Fade-in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 16px;
}

.cookie-content a {
    color: #FFD700;
    font-weight: 600;
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-btn {
    background: white;
    color: #3A57E8;
    border: none;
    padding: 10px 15px;
    margin-top: 10px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-btn:hover {
    background: #FFD700;
    color: #222;
}

/* Responsive Design */
@media (max-width: 600px) {
    .cookie-popup {
        width: 95%;
        bottom: 10px;
    }
}
