/**
 * Map controls mobile fix
 * Hides #gmap-control on mobile devices (< 768px) to prevent UI issues
 */

@media (max-width: 768px) {
    #gmap-control {
        display: none !important;
    }
}

@media (max-width: 510px) {
    #gmap_wrapper {
        display: none !important;
    }
}