
    /* Map default (desktop) */
    #map {
      width: calc(100% - 12px);
      height: 50vh;
      border-radius: 12px;
    }

    /* Map khusus mobile */
    @media (max-width: 768px) {
      #map {
        width: 100%;
        height: 50vh;  /* lebih tinggi biar enak di HP */
      }
    }

    .custom-popup {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #fff;
    }

    .custom-popup img {
      width: 50px;
      height: auto;
    }

    .leaflet-popup-content-wrapper {
      border-radius: 5px;
      background: #243930f7;
      color: #fff;
      width:300px;
    }

    .leaflet-popup-tip {
      background: #243930f7;
    }

    .leaflet-control.gmap-link {
      display: flex;
      align-items: center;
      background-color: #243930;
      color: #fff;
      font-weight: bold;
      border-radius: 10px;
      text-decoration: none;
      box-shadow: 0 4px 10px rgba(0,0,0,0.4);
      cursor: pointer;
      overflow: hidden;
      font-size: 16px;
      height: 40px;
      transform: translate(-10px, -10px);
    }
    .leaflet-control.gmap-link:hover {
      background-color: #21342b;
      color: #fff;
    }

    .gmap-link .label {
      padding: 0 16px;
    }

    .gmap-link .icon {
      color: #fff;
      padding: 0 16px;
      display: flex;
      align-items: center;
      font-size: 18px;
    }
    .leaflet-control-zoom{
      display: none;
    }