.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(33, 37, 41, 0.95);
    color: white;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-banner p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.cookie-banner .btn {
    font-size: 0.9rem;
    padding: 0.375rem 1rem;
}

@media (max-width: 767.98px) {
    .cookie-banner .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .cookie-banner .btn:last-child {
        margin-bottom: 0;
    }
}