.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #212529;
    color: #fff;
    padding: 15px;
    z-index: 1050;
    display: none; /* Hidden by default */
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-consent-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1060;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
}

.cookie-consent-modal .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
}

#cookie-consent-modal.show {
    display: flex;
}

.cookie-consent-modal .modal-content {
    background-color: #fff;
    color: #212529;
}

.modal-content {
    padding: 1rem;
}
