body {
      font-family: Arial, sans-serif;
      padding: 1rem;
      margin: 5px;
      background: #f9f9f9;
    }

    h1 {
      text-align: center;
      color: #333;
    }

    #lokasiWrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 2rem 0;
    }

    .btn-lokasi {
      background-color: #28a745;
      color: white;
      border: none;
      padding: 0.8rem 1.5rem;
      font-size: 1rem;
      font-weight: bold;
      border-radius: 30px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .btn-lokasi:hover {
      background-color: #218838;
      transform: scale(1.05);
      box-shadow: 0 6px 14px rgba(0,0,0,0.15);
    }

    #lokasiStatus, #pesanStatus {
      text-align: center;
      margin-bottom: 1rem;
      color: #555;
    }

    #menuContainer {
      display: none;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
    }

    .menu-item {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      padding: 1rem;
      width: 200px;
      text-align: center;
    }

    .menu-item img {
      width: 100%;
      object-fit: cover;
      border-radius: 8px;
    }

    .counter {
      margin-top: 0.5rem;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.5rem;
    }

    .counter button {
      padding: 0.3rem 0.8rem;
      font-size: 1rem;
      border: none;
      border-radius: 5px;
      background: #007bff;
      color: white;
      cursor: pointer;
    }

    .counter input {
      width: 40px;
      text-align: center;
      border: none;
      background: #f0f0f0;
      border-radius: 5px;
    }

    .order-btn {
      display: block;
      margin: 2rem auto;
      background: #ff9800;
      color: white;
      padding: 0.8rem 1.5rem;
      border: none;
      border-radius: 30px;
      font-size: 1rem;
      font-weight: bold;
      cursor: pointer;
    }

    .order-btn:hover {
      background: #e68900;
    }