body, html {
  margin: 0;
  padding: 0;
  height: 100%;
}

#map-container {
    flex: 1;
    position: relative;
        min-height: 800px;

}

#map {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    min-height: inherit;
}

.top-buttons {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.top-buttons input[type="file"],
.top-buttons button {
  padding: 8px 12px;
  font-size: 14px;
  border: none;
  border-radius: 5px;
  background: #007bff;
  color: white;
  cursor: pointer;
}

.top-buttons input[type="file"] {
  background: #28a745;
}

.top-buttons button:disabled {
  background: #aaa;
  cursor: not-allowed;
}

@media (max-width: 600px) {
  .top-buttons {
    flex-direction: column;
    align-items: center;
  }
}
