#cookieConsentBox {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000; /* Ensures it stays on top */
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: none; /* Hidden by default */
    max-width: 400px;
    margin: 0 auto;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: Arial, sans-serif;
    color: #333;
}

.cookie-content p {
    margin-bottom: 15px;
    font-size: 14px;
}

.cookie-content a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.cookie-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}

#acceptCookies {
    background-color: #007bff;
    color: #fff;
}

#acceptCookies:hover {
    background-color: #0056b3;
}

#declineCookies {
    background-color: #f44336;
    color: #fff;
}

#declineCookies:hover {
    background-color: #d32f2f;
}
