body {
  font-family: sans-serif;
  padding: 1em;
}

#navigation {
  background-color: darkred;
  margin: 0;
  margin-bottom: 2em;
  padding: 0;
  display: flex;
  list-style-type: none;
}

#navigation li {
  color: white !important;
}

#navigation li:hover {
  background: brown;
}

#navigation li a {
  display: inline-block;
  color: white !important;
  padding: 1em;
}

#upload-data {
  /*width: 100%;*/
  height: 60px;
  line-height: 60px;
  border: 1px dashed;
  border-radius: 5px;
  text-align: center;
  margin: 1em 0;
}

#storage-consent-info {
  border: 1px solid darkblue;
  border-radius: 5px;
  background-color: lightblue;
  padding: 1em;
}

#storage-consent-info label {
  font-weight: bold;
  margin-top: 1em;
}

#map-reading-graphs {
  margin-top: 1em;
}

#description {
  border: 1px solid grey;
  border-radius: 5px;
  padding: 1em;
  background: lightblue;
}

#urls {
  width: 100%;
  height: 150px;
  display: block;
}

#info {
  display: flex;
  gap: 0.5em;
  justify-content: space-between;
  margin: 1em 0;
}

#info ul,
#info #files {
  border: 1px solid grey;
  border-radius: 5px;
  padding: 1em;
  padding-left: 2em;
  flex-grow: 1;
  margin: 0;
}

#user-input {
  display: flex;
  gap: 0.5em;
  justify-content: space-between;
  margin: 1em 0;
}

#user-selection {
  flex-grow: 1;
}

#user-parameters {
  flex-grow: 1;
}

#user-parameters label {
  display: block;
}

#performance-indices,
#relative-performance {
  margin: 1em 0;
}

.failure {
  color: red;
}

.success {
  color: green;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 9999;
  display: none; /* Anfangs ausgeblendet */
  align-items: center;
  justify-content: center;
}

.spinner {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #007BFF;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
