html, body, #cesiumContainer {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: sans-serif;
    text-align: center;
}

/* Prevent text selection on the whole page */
body, html {
  -webkit-user-select: none;  /* Safari / iOS */
  -moz-user-select: none;     /* Firefox */
  -ms-user-select: none;      /* IE10+ */
  user-select: none;          /* Standard */
  -webkit-touch-callout: none; /* Disable iOS callout menu */
}
/* Re-enable selection for form fields */
input, textarea {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
  -webkit-touch-callout: default;
}






#clientCountLabel {
    position: absolute;
    top: 10px;
    left: 10px; 
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 6px 12px;
    /* font-size: 2.5em; */
    border-radius: 4px;
    font-family: sans-serif;
    z-index: 999;
}

#insta-link {
    position: absolute;
    top: 10px;
    right: 10px; 
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 6px 12px;
    /* font-size: 2.5em; */
    border-radius: 4px;
    font-family: sans-serif;
    z-index: 999;
    cursor: pointer;
    text-decoration: none;
}

#fab-container {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1000;
  margin-bottom: 1em;
  border: 1px solid white;
  border-radius: 9999px;
  cursor: pointer;
  padding: 1em;
  background: rgba(0, 0, 0, 0.5);
}

#fab-button {
    width: 2em;
    height: 2em;
    border-radius: 50%;
    /* font-size: 3.5em; */
    background-color: white;
    color: black;
    border: none;
    font-weight: bold;
}

#fab-label {
  /* font-size: 3em; */
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
}

#popup-form {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(30, 30, 30, 0.7); */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
#popup-form.hidden {
  display: none;
}
#popup-form img {
  width: 30%;
  padding-left: 35%;
  padding-right: 35%;
}

#form-container {
  background: white;
  border: 2px solid #aaa;
  padding: 2em;
  width: 90%;
  max-width: 500px;
  max-height: 90%;
  overflow-y: auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  border-radius: 8px;
}

#form-container h2 {
  width: 100%;
  text-align: center;
  /* font-size: 2em; */
}

#form-container label {
  display: block;
  margin: 12px 0;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.form-actions button {
  /* padding: 10px 16px; */
  padding: 1em;
  font-size: 1.33em;
  cursor: pointer;
}

#appointment-form {
  width: 100%;
}
#appointment-form label {
  width: 100%;
}
#appointment-form label input {
  width: 100%;
  display: flex;
  padding: 10px;
  /* font-size: 2em; */
}






#imprint-link {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: rgba(0,0,0,0.6);
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.67em;
  cursor: pointer;
  z-index: 999;
}

#imprint-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(30, 30, 30, 0.7); */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
#imprint-popup.hidden {
  display: none;
}

#imprint-container {
  background: white;
  border: 2px solid #aaa;
  padding: 4em;
  width: 90%;
  text-align: center;
  max-width: 500px;
  max-height: 90%;
  overflow-y: auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  border-radius: 8px;}
