/*
 * Created Date: Friday, 22nd November 2024, 2:20:48 pm
 * Author: Kingsley Chimezie
 */


/* Cookie Banner */
.cookie-banner {
    top: 0;
    display: flex;
    gap: 16px;
    /* Optional: space between the divs */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #222;
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.cookie-banner button {
    margin-left: 10px;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.cookie-banner button#accept-cookies {
    background-color: #4caf50;
    color: white;
    transition: .2s;
}
.cookie-banner button#accept-cookies:hover {
    font-weight: bold;
    font-size: larger;
    transition: .2s;
}

.cookie-banner button#reject-cookies {
    background-color: #f44336;
    color: white;
    transition: .2s;
}
.cookie-banner button#reject-cookies:hover {
    font-weight: bold;
    font-size: larger;
    transition: .2s;
}

#privacyPolicyLink > a {
    text-decoration: underline;
}

.hidden {
    display: none;
}

/* Media query for mobile screens */
@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        /* Stack the divs vertically */
        text-align: center;
        /* center text */
    }
}