body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #05050cf1;
    margin: 0 auto;
    padding: 20px;
    max-width: 900px;
    color: #ffffff;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

form {
    background-color: #394250;
    border: 1px solid #cabd01;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

label {
    font-weight: bold;
}

input, button {
    width: 100%;
    padding: 8px;
    margin: 5px 0 15px;
    border-radius: 4px;
    border: 1px solid #cabd01;
    box-sizing: border-box;
    font-size: 1.2rem;
}

button {
    background-color: #0c460e;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #45a049;
}

#errorMessage {
    color: red;
    font-weight: bold;
}

#map {
    width: 100%;
    height: 300px;
    border: 2px solid #4CAF50;
    border-radius: 4px;
    margin-bottom: 15px;
}

.hidden { display: none; }
@keyframes quick-shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-2px); }
  50% { transform: translateX(2px); }
  75% { transform: translateX(-2px); }
  100% { transform: translateX(0); }
}
#loading:not(.hidden) { animation: quick-shake 0.35s ease-in-out 2; font-weight: 600; margin-top: 6px; }