#weather-map {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  border: 1px solid #ddd;
  border-radius: 4px;
}
#weather-info {
  max-width: 320px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  font-family: Arial, sans-serif;
  color: #333;
  margin-top: 15px;
  user-select: none;
}

#weather-info h3 {
  margin-top: 0;
  font-weight: 600;
  font-size: 1.3rem;
}

#weather-info p {
  margin: 8px 0;
  font-size: 1rem;
}

.weather-icon {
  width: 60px;
  height: 60px;
  vertical-align: middle;
  margin-right: 10px;
}

.spinner {
  width: 24px;
  height: 24px;
  border: 4px solid #ccc;
  border-top-color: #007bff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin: auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

#weather-map-loading-overlay {
  position: absolute;
  top: 50%;
  right: 50%;
  background: white;
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
  z-index: 10000;
}
