#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #212529;
    color: #f8f9fa;
    padding: 15px 20px;
    z-index: 1055;
    display: none;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    border-top: 1px solid #444;
}

#cookie-banner-text {
    margin: 0;
}

#cookie-banner-text a {
    color: #0d6efd;
    text-decoration: underline;
}

#cookie-banner-text a:hover {
    color: #0b5ed7;
}

#cookie-accept-btn {
    background-color: #0d6efd;
    color: #ffffff;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    white-space: nowrap;
    margin-left: 20px;
}

#cookie-accept-btn:hover {
    background-color: #0b5ed7;
}

@media (max-width: 768px) {
    #cookie-banner {
        flex-direction: column;
        padding: 15px;
        text-align: center;
    }

    #cookie-banner-text {
        margin-bottom: 15px;
    }

    #cookie-accept-btn {
        width: 100%;
        padding: 10px;
        margin-left: 0;
    }
}
