/* Algemene stijlen */
*{
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

/* Loading overlay voor centraal laadsymbool */
#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255,255,255,0.7);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}
#loadingOverlay #loadingGif {
    display: block;
    background: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
}

#closeDataBarWithGrafieken {
    padding-top: 7px !important;
}

.x-spacer {
    flex: 1;
}

.custom-logo-marker {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid white;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
  background-color: white;
}
.custom-logo-marker img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}