* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background: #f4f4f4;
}

/* #region===== NAVBAR =====*/

      /* Navbar styling */
      .navbar {
        position: fixed;
        display: flex;
        align-items: center;
        z-index: 1000 !important;
        
        top: 0;
        width: 100%;
        height: 50px;

        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        background: #979797;
        color: white;
      }

      .home-logo{
        position: absolute;
        width: 120px !important;
        
        font-size: 1rem;
        font-weight: 700;
        color: white;
        text-decoration: none;
      }

      .navbar-icons-flex {
        display: flex;
        justify-content: center;
        align-items: center;

        width: 100%;
        gap: 1.6rem;
      }

      .navbar-icons {
        font-size: 1rem;
        border-radius: 4px;
      }

      .navbar-icons:hover {
        background-color: #838383;
        color: #ffffff;
      }

      .navbar a {
        width: 90px;
        padding: 7px 10px 7px 10px; 
        font-weight: 600;
        color: white;
        text-decoration: none;
        text-align: center;
        /* text-shadow:
              -1px -1px #555555, 
              1px -1px #555555,
              -1px 1px #555555,
              1px 1px #555555; */
      }
/* #endregion */

.button {
  position: relative;
  z-index: 10;

  width: 300px;
  height: 150px;
  padding: 5px 10px 5px 10px; /* clockwise, ^ > v <*/
  
  background-color: #f3f3f3;
  border-color: #cccccc;
  border-width: 2px;
  border-radius: 50px;
  box-shadow: -5px 5px #888888;

  font-size: 1.2rem;
  text-decoration: none;
  font-weight: 600;
  color: #636363;
}
  .button:hover {
    box-shadow: -2px 2px #888888;
    transform: scale(0.9);
  }

#map-test{
  background-color:green;
}


/* Search Popup Styles */

.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-box {
  background: white;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.search-input {
  width: 300px;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.close-btn {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

        

#updateslist {
  font-size: 0.9rem;
  margin-top: 10px;
  list-style-type: none;
}