/* Mobile Space Dropdown Fix */
@media (max-width: 768px) {

    /* Position dropdown above the button on mobile */
    .space-dropdown {
        position: fixed !important;
        top: auto !important;
        bottom: 60px !important;
        /* Above the footer */
        right: 10px !important;
        left: auto !important;
        z-index: 10001 !important;
        /* Above footer (z-index: 1000) */
        max-height: 50vh !important;
        /* Limit height to half viewport */
    }
}