#map {
  height: 200px;
}
body {
      background-color: #f5f5f5;
      font-family: "Segoe UI", Roboto, sans-serif;
    }

    .uber-card {
      background-color: #fff;
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    }

    .form-label {
      font-weight: 600;
      font-size: 14px;
      color: #333;
    }

    .form-control {
      border-radius: 10px;
      border: 1px solid #ccc;
    }

    .btn-uber {
      width: 100%;
      background-color: #000;
      color: #fff;
      font-weight: 500;
      border-radius: 12px;
      padding: 12px;
      font-size: 16px;
      transition: all 0.3s;
    }

    .btn-uber:hover {
      background-color: #333;
    }

    #map {
      width: 100%;
      height: 350px;
      border-radius: 15px;
      background: #e0e0e0;
    }

    @media (min-width: 768px) {
      #map {
        height: 100%;
      }
    }