
     html, body {
            margin: 0;
            height: 100%;
            font-family: Arial, sans-serif;
        }

        #map {
            height: 100vh;
            width: 100%;

            /*pointer-events: auto !important;*/
        }
        
        /* Search box container */
        .search-box {
            position: absolute;
            top: 15px;
            left: 15px;
            right: 15px;
            
            width: auto;
            max-width: 400px;
            z-index: 5;
        }
        
        /* Input styling */
        #destination {
            width: 100%;
            padding: 12px 16px;
            border-radius: 30px;
            border: none;
            outline: none;
            font-size: 14px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        
        /* Google dropdown fix */
        .pac-container {
            border-radius: 12px !important;
            margin-top: 5px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.2);
            font-family: inherit;
            z-index: 9999 !important;
        }
        
        .info {
            padding: 10px;
            background: white;
            font-size: 16px;
        }
        
        
        @media(max-width: 960px) {
            .info {
                font-size: 15px;
            }
        }
        
        
        @media (max-width: 600px) {
        .search-box {
            top: 10px;
            left: 10px;
            right: 10px;
            max-width: 100%;
        }
    
        #destination {
            font-size: 13px;
            padding: 10px 14px;
        }
    }
        

        

        
        