.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
  font-size: 1.7rem;
}

:root {
  --primary-color: #acc8ce;
  --secondary-color: #091d2d;
  --special-color: #091d2d;
  --main-color: #ffffff;
  --dark-color: black;
  --light-color: #fdffff;
  --gray-white-color: #f7f7f7;
  --white-color: #ffffff;
  --black-color: #000000;
  --dark-grey-color: #333333;
  --light-grey-color: #cccccc;
  --dim-color: #dcdcdc;

  --readonly: #ffffff;
  --checkmark: #ffffff;
  --font-color: #000000;
  --nav-color: #fdffff;

  --indicator-color: #fdffff;
  --induction: #acc8ce;
  --thin-shaddow: rgba(0, 0, 0, 0.1);
  --darkmode-shaddow: rgba(0, 0, 0, 0.1);
  --shaddow: rgba(0, 0, 0, 0.3);
  --active: #dcdcdc; /* Schriftfarbe der Induction*/
  --inactive: rgb(0, 0, 0, 0); /* Schriftfarbe der Induction -- voll transparent*/
  --tooltip: rgb(50, 50, 50, 0.842);
}

.dark-mode {
  --primary-color: #002a46;
  --secondary-color: #bedce2;
  --special-color: #004635;
  --main-color: #555555;
  --dark-color: #fdffff;
  --light-color: #2c2c2c;

  /*checkmark*/
  --gray-white-color: #999999;

  /* input-buttons */
  --white-color: #646464;
  --black-color: #ffffff;
  --dark-grey-color: #f5f5f5;
  --light-grey-color: #f7f7f7;
  --dim-color: #1a1a1a;

  --readonly: #706f6f;
  --checkmark: #d1d1d1;
  --font-color: #e7e7e7;
  --nav-color: #706f6f;

  --indicator-color: #1a1a1a;
  --induction: #327254;

  --thin-shaddow: rgba(255, 255, 255, 0);
  --darkmode-shaddow: rgba(255, 255, 255, 0.1);
  --shaddow: rgba(255, 255, 255, 0);
  --active: rgb(235, 235, 235); /* Schriftfarbe der Induction*/
  --inactive: rgba(180, 180, 180, 0); /* Schriftfarbe der Induction -- voll transparent*/
  --tooltip: rgba(255, 255, 255, 0.842);
}

/* CSS für die Swipe-Animation mit Opazitätsänderung und schnellerer Bewegung */
.swipe-animation {
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out; /* Kürzere Dauer für eine schnellere Animation */
  opacity: 0.5; /* Reduzierte Opazität während der Animation */
}

.responsive-text {
  font-size: clamp(0.4rem, 1vw + 1vh + 0.5vmin, 0.7rem); /* Passt die Schriftgröße dynamisch an, mit einem Minimum von 0.5rem und einem Maximum von 0.8rem */
  line-break: anywhere; /* Erlaubt Zeilenumbrüche überall im Text */
  word-wrap: break-word; /* Verhindert das Überlaufen von langen Wörtern außerhalb des Containers */
  overflow-wrap: break-word; /* Sichert, dass der Text innerhalb des Containers bleibt */
  hyphens: auto; /* Fügt automatisch Bindestriche ein, wenn nötig */
}

.litetext {
  position: relative;
  overflow: hidden; /* Verhindert das Überlaufen von Inhalten */
  /* Andere Stildefinitionen hier */
}

.litetext::after {
  content: "Vorschau Pro Version";
  position: absolute;
  top: 50%; /* Zentriert das Element vertikal */
  left: 50%; /* Zentriert das Element horizontal */
  transform: translate(-50%, -50%); /* Korrigiert die Zentrierung basierend auf den eigenen Dimensionen */
  color: indianred; /* Schriftfarbe */
  font-size: 24px; /* Große Schrift */
  background-color: rgba(0, 0, 0, 0.5); /* Hintergrundfarbe */
  z-index: 1;
  padding: 10px; /* Etwas Abstand um den Text */
  text-align: center; /* Zentriert den Text */
}

.liteversion::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Grauer Hintergrund mit Transparenz */
  z-index: 1;
}
