html, body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', Arial, sans-serif;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background: #EBE7D9; /* Beige chiaro */
  color: #0F222D; /* Blu notte per contrasto */
}

#login-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.9); /* Sfondo bianco trasparente */
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  z-index: 10;
  color: #0F222D; /* Blu notte */
}

#login-box h2 {
  margin-bottom: 20px;
  color: #B09E80; /* Oro tenue */
}

input[type="password"] {
  padding: 10px;
  font-size: 16px;
  width: 250px;
  border: 1px solid #B09E80; /* Oro tenue */
  border-radius: 5px;
  margin-bottom: 10px;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #0F222D; /* Blu notte */
  color: #FFFFFF;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #f08c35; /* Arancio più scuro */
}

#error-msg {
  color: #e63946; /* Rosso per errori */
  font-size: 14px;
  margin-top: 10px;
}

#map-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  z-index: 1;
  background: #EBE7D9; /* Beige chiaro */
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
  position: relative;
  z-index: 1;
}

#chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  pointer-events: auto;
}


/* Mobile full support */
@media (max-width: 768px) {
  #map-container {
    height: 100vh;
  }

  iframe {
    width: 100%;
    height: 100%;
  }

  #chatbot-container {
    bottom: 15px;
    right: 15px;
  }
}
