.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    color: black;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    font-size: 16px;
    font-family: 'HelveticaNeueLTStd-Lt', Helvetica, Arial, sans-serif;
    display: none;
    box-sizing: border-box;
    border-top: 2px solid #000000;
}

.cookie-banner p {
    margin: 0;
    padding-right: 20px;
    font-size: 1rem;
    flex-grow: 1;
}

.cookie-banner button {
    color: white;
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    margin: 5px;
    font-family: 'HelveticaNeueLTStd-Bd', Helvetica, Arial, sans-serif;
    border-radius: 8px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    min-width: 100px;
}

.cookie-banner button#acceptCookies {
    background-color: #005bbb;
}

.cookie-banner button#acceptCookies:hover {
    background-color: #004a99;
}

.cookie-banner button#declineCookies {
    background-color: #6c757d;
}

.cookie-banner button#declineCookies:hover {
    background-color: #5a6268;
}

.cookie-banner a {
    color: #005bbb;
    text-decoration: underline;
}

.cookie-banner a:hover {
    color: #ffd500;
}

.cookie-banner button:focus {
    outline: 2px dashed #005bbb;
    outline-offset: 2px;
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 10px;
    }

    .cookie-banner button {
        padding: 10px 18px;
        font-size: 0.9rem;
        min-width: 80px;
    }
}
