html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#map {
  width: 100%;
  height: 100%;
}
.cesium-credit-textContainer {
  display: none !important; /* Credits ausblenden */
}

#loading {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0,1.00);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.loader {
  border: 6px solid #ccc;
  border-top: 6px solid #333;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.fade-out {
  opacity: 0;
  transition: opacity 1s ease;
}

.cesium-credit-textContainer,
.cesium-credit-logoContainer,
.cesium-viewer-bottom {
  display: none !important;
}

