.cookie-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #f8f9fa; /* Light gray background */
    border: 1px solid #dee2e6; /* Subtle border */
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Shadow for depth */
    padding: 20px;
    width: 300px;
    z-index: 1000;
    display: none; /* Hidden by default */
    animation: slideIn 0.5s ease-out; /* Animation for entry */
}

.cookie-popup p {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    color: #343a40; /* Dark gray text */
    margin-bottom: 10px;
    text-align: center;
}

.cookie-popup button,
.cookie-popup .learn-more {
    display: inline-block;
    margin: 5px 10px;
    padding: 10px 15px;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s;
}

#acceptCookies {
    background-color: #007bff; /* Blue button */
    border: none;
    cursor: pointer;
}

#acceptCookies:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: scale(1.05); /* Slight zoom */
}

.learn-more {
    background-color: #6c757d; /* Gray button */
    border: none;
}

.learn-more:hover {
    background-color: #495057; /* Darker gray on hover */
    transform: scale(1.05); /* Slight zoom */
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}