/* Make modal dialog stick to bottom, full width */
#cookieModal .modal-dialog {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    max-width: 100%;
    pointer-events: none; /* Disable clicks outside modal content */
    z-index: 1055;
}

/* Style the modal content */
#cookieModal .modal-content {
    border-radius: 0;
    border: none;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    pointer-events: all; /* Enable clicks inside modal */
}

/* Responsive tweaks */
@media (max-width: 576px) {
    #cookieModal .modal-body {
        flex-direction: column;
        align-items: flex-start;
    }
}
