  html,
  body {
    margin: 0;
    height: 100%;
  }
  
  #map {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
  }
  
  /* CSS untuk popup */
  .popup-content {
    padding: 10px;
    background-color: #fff;
    border: 2px solid #333; /* Menambahkan border di semua sisi */
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 90%;
    box-sizing: border-box;
    overflow: hidden;
}

  
  .popup-content table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
  }
  
  .popup-content th,
  .popup-content td {
    padding: 1px;
    text-align: left;
    border-bottom: 1px solid #ddd;
  }
  
  .popup-content th {
    background-color: #ffffff;
    font-weight: bold;
  }
  
  .popup-content {
    max-width: 300px;
    overflow: hidden; 
  }
  
  @media (max-width: 600px) {
    .popup-content {
        max-width: 100%;
    }
    .popup-content img {
        max-width: 100%; 
        height: auto; 
    }
  }
    
  img {
    max-width: 220px; 
    max-height: 120px; 
    border-radius: 1px;
    margin: 10px;
  }
  
  #placeForm {
    position: fixed;
    top: 20px; 
    left: 20px;
    width: 300px; 
    padding: 20px; 
    background-color: white;
    border: 1px solid #ccc; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
    z-index: 1000; 
}

#placeForm form {
    display: flex;
    flex-direction: column;
}

#closeButton {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    background-color: #f44336;
    color: white;
    border: none;
    padding: 5px 10px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

  
  #placeForm input[type="text"],
  #placeForm textarea {
    margin-bottom: 10px;
    padding: 8px; 
    width: 100%;
    box-sizing: border-box;
  }
  
  #placeForm button {
   
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
  }
  
  #placeForm button:hover {
    background-color: #0056b3;
  }

  .button-admin {
    position: fixed;
    left: 10px;
    bottom: 10px; 
    padding: -5px 1px;
    background-color: white;
    cursor: pointer;
    height: 40px;

  }
  
  .button-admin:hover {
    background-color: #ffffff;
  }

  #showFormButton {
    padding: 10px 15px;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
    position: fixed;
    bottom: 50px;
    left: 10px;
    z-index: 1000;
    display: flex;
    justify-content: center; 
    align-items: center;
    width: 180px;
    height: 50px;
    
  }

  #showFormButton:hover {
    background-color: #0056b3;
  }
  .button-home {
    position: fixed;
    left: 10px;
    bottom: 120px; 
    padding: -5px 1px;
    background-color: white;
    cursor: pointer;
    height: 40px;

  }
  
  .button-admin:home {
    background-color: #ffffff;
  }

  .text-title {
    font-family: 'Noto Sans', serif;
    color: #0056b3;
  }
  .navbar {
    position: fixed ;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .navbar h1 {
    text-align: center;
    margin: 0;
    font-size: 24px;
    color: #333;
  }
  
  .navbar-img {
    width: 40px;
    height: 40px;
  }
  
  /* Media Queries untuk Responsivitas */
  @media (max-width: 600px) {
    .navbar h1 {
      font-size: 1.2em;
    }
    #popup-input input, #popup-input button {
      width: 100%;
      margin-bottom: 10px;
    }
  }