/* ========================================
   COOKIE BANNER
======================================== */

#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;

    width: auto;
    max-width: 420px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 15px;

    padding: 18px 20px;

    background: rgba(255, 255, 255, 0.9);
    color: #111111;

    border-radius: 10px;

    z-index: 9999;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}


/* ========================================
   COOKIE BANNER TEXT
======================================== */

#cookie-banner h3 {
    color: #111111;
    margin: 0 0 5px;
    font-size: 18px;
}

#cookie-banner p {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    text-transform: none;
    letter-spacing: normal;
}

#cookie-banner a {
    color: #111111;
}


/* ========================================
   COOKIE BUTTONS
======================================== */

#acceptCookies {
    background: #0164DF !important;
    color: #fff;
    border: none;

    padding: 9px 16px;

    border-radius: 7px;

    white-space: nowrap;
    cursor: pointer;
}

#rejectCookies {
    background: #111111;
    color: #fff;
    border: none;

    padding: 9px 16px;

    border-radius: 7px;

    white-space: nowrap;
    cursor: pointer;
}

#rejectCookies:hover {
    background: #0164DF !important;
}


/* ========================================
   MOBILE
   768px and below
======================================== */

@media (max-width: 768px) {

    #cookie-banner {
        left: 15px;
        right: 15px;
        bottom: 15px;

        width: auto;
        max-width: none;

        padding: 16px;

        gap: 12px;
    }

    #cookie-banner h3 {
        font-size: 17px;
    }

    #acceptCookies,
    #rejectCookies {
        padding: 8px 12px;
        font-size: 13px;
    }
}