/* === Reset & Base Styles === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  /* Arc-ähnliche Schriftart, falls auf dem System verfügbar, sonst Fallback */
  font-family: 'Inter', 'SF Pro Text', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
  /* Sanfter blauer/grauer Verlauf für den Hintergrund */
  background: linear-gradient(135deg, #e0f2f7, #d4eaf5);
  color: #333;
  line-height: 1.6;
  min-height: 100vh; /* Stellt sicher, dass der Verlauf den gesamten Viewport bedeckt */
  display: flex;
  flex-direction: column;
}

/* --- Header --- */
header {
  /* Transparenter, milchiger Hintergrund für den Header */
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px); /* Stärkerer Blur für Glasmorphie */
  -webkit-backdrop-filter: blur(12px); /* Für Safari-Unterstützung */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); /* Dezenterer, breiterer Schatten */
  color: #333; /* Dunklere Schriftfarbe für Kontrast */
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6); /* Leichte Trennlinie */
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 960px; /* Etwas breiterer Container */
  margin: 0 auto;
  padding: 0 1.5rem; /* Etwas mehr Padding */
}

header h1 {
  margin: 0;
  font-size: 1.6rem; /* Etwas größer */
  color: #2c3e50; /* Dunklere Überschriftfarbe */
}

header nav a {
  margin-left: 1.5rem; /* Mehr Abstand */
  color: #555; /* Neutralere Linkfarbe */
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
  font-weight: 500; /* Etwas dicker */
}

header nav a:hover {
  color: #007bff; /* Arc-ähnliches Blau beim Hover */
  transform: translateY(-1px); /* Leichter Schwebe-Effekt */
}

/* --- Main Content --- */
main {
  flex-grow: 1; /* Nimmt den verbleibenden Platz ein */
  max-width: 960px;
  margin: 2.5rem auto; /* Mehr vertikaler Abstand */
  padding: 0 1.5rem;
}

a {
  color: #007bff; /* Konsistentes Blau */
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #0056b3; /* Dunkleres Blau beim Hover */
}

.hero {
  background: rgba(255, 255, 255, 0.55); /* Etwas weniger transparent */
  backdrop-filter: blur(15px); /* Stärkerer Blur */
  -webkit-backdrop-filter: blur(15px);
  padding: 3rem; /* Mehr Padding */
  border-radius: 20px; /* Stärker abgerundet */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); /* Weicherer, größerer Schatten */
  border: 1px solid rgba(255, 255, 255, 0.7); /* Feiner Rand */
}

.center_header {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 1.5rem; /* Abstand zur weiteren Inhalt */
}

/* --- Footer --- */
footer {
  text-align: center;
  padding: 1.5rem; /* Mehr Padding */
  margin-top: 4rem;
  background: rgba(255, 255, 255, 0.35); /* Anpassung der Transparenz */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.95rem;
  border-radius: 20px 20px 0 0; /* Stärker abgerundete obere Ecken */
  color: #666;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
}

/* --- Login & General Containers --- */
.login-container,
.login-container-1000,
.card {
  background: rgba(255, 255, 255, 0.55); /* Konsistente Transparenz */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 3em; /* Mehr Padding */
  border-radius: 20px; /* Konsistente Rundung */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.7);
  width: 100%;
  margin: 4rem auto;
  text-align: center;
}

.login-container {
  max-width: 420px; /* Etwas breiter */
}

.login-container-1000 {
  max-width: 1000px;
}

/* --- Inputs & Buttons --- */
input,
textarea {
  width: 100%;
  padding: 0.9em 1.2em; /* Mehr Padding */
  margin: 0.6em 0;
  border: 1px solid rgba(0, 0, 0, 0.1); /* Dezenterer Rand */
  border-radius: 14px; /* Noch runder */
  background: rgba(255, 255, 255, 0.7); /* Hellerer Hintergrund */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05); /* Dezenterer Inset-Schatten */
  transition: all 0.3s ease;
  color: #333;
}

input:focus,
textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.9);
  border-color: #007bff; /* Blauer Fokus-Rand */
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2); /* Sanfter blauer Glow */
}

button {
  width: 100%;
  padding: 0.9em 1.5em; /* Mehr Padding */
  background: linear-gradient(135deg, #007bff, #0056b3); /* Arc-ähnlicher Blauverlauf */
  color: white;
  margin: 15px 0; /* Anpassung des Margins */
  border: none;
  border-radius: 16px; /* Noch runder */
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.25); /* Blauerer, weicherer Schatten */
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  font-weight: 600; /* Etwas dickerer Text */
  letter-spacing: 0.5px;
}

button:hover {
  background: linear-gradient(135deg, #0056b3, #003d80); /* Dunklerer Verlauf beim Hover */
  transform: translateY(-3px); /* Etwas mehr Lift */
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.35);
}

button:active {
  transform: translateY(0); /* Zurücksetzen beim Klick */
  box-shadow: 0 2px 10px rgba(0, 123, 255, 0.2);
}

/* --- Messages --- */
#message,
#result {
  margin-top: 1.5em;
  font-weight: 500;
}

/* --- Entry List --- */
li {
  color: #007bff; /* Konsistentes Blau */
  margin-bottom: 0.6em;
  list-style-type: disc; /* Standard-Listenpunkt */
  margin-left: 20px; /* Einrückung */
}

/* --- Error / Success --- */
.error {
  color: #dc3545; /* Bootstrap-ähnliches Rot */
  font-weight: 600;
}

.succes {
  color: #28a745; /* Bootstrap-ähnliches Grün */
  font-weight: 600;
}

/* --- Tool Button --- */
.tool {
  color: white;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border: none;
  border-radius: 50%;
  width: 52px; /* Etwas größer */
  height: 52px; /* Etwas größer */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.25);
  cursor: pointer;
  position: sticky;
  transition: all 0.3s ease;
}

.tool:hover {
  background: linear-gradient(135deg, #0056b3, #003d80);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.35);
}

.tool:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 123, 255, 0.2);
}

/* --- Tooltip --- */
.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 180px; /* Etwas breiter */
  background: rgba(0, 0, 0, 0.75); /* Leichter transparenter Hintergrund */
  color: #fff;
  text-align: center;
  border-radius: 10px; /* Mehr Rundung */
  padding: 10px; /* Mehr Padding */
  position: absolute;
  z-index: 10; /* Höherer Z-Index */
  bottom: 130%; /* Etwas höher positioniert */
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* --- Utility --- */
.invisible {
  display: none;
}

.info {
  font-size: 1.1rem; /* Etwas kleiner */
  margin: 8px 0;
  color: #666; /* Dezenter */
}

/* --- Click Button (Larger Button Example) --- */
#click-button {
  padding: 60px 60px;
  font-size: 26px; /* Etwas größerer Text */
  border: none;
  border-radius: 25px; /* Stärker abgerundet */
  background: linear-gradient(to right, #6bb8ff, #4a90e2); /* Sanfterer Blauverlauf */
  color: white;
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3); /* Blauerer Schatten */
  cursor: pointer;
  transition: transform 0.1s ease, background 0.3s ease, box-shadow 0.3s ease;
  font-weight: 700;
  letter-spacing: 1px;
}

#click-button:active {
  transform: scale(0.98); /* Kleiner beim Klicken */
  background: linear-gradient(to left, #4a90e2, #6bb8ff); /* Verlauf umkehren */
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
}

#click-button:disabled {
  background: #e0e0e0;
  box-shadow: none;
  color: #a0a0a0;
  cursor: not-allowed;
  transform: none;
}

/* --- Card Style --- */
.card {
  /* Stil bereits mit .login-container zusammengefasst */
  padding: 35px; /* Etwas mehr Padding */
}

/* --- Secondary Text & Headers --- */
.secondary {
  color: #777; /* Etwas dunkleres Grau */
  font-size: 0.95rem;
}

.secondary-header {
  background: rgba(255, 255, 255, 0.3); /* Leichter, transparenter Hintergrund */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  color: #333;
  padding: 0.8rem 0; /* Weniger Padding */
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.secondary-header .container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.secondary-header h1 {
  font-size: 1.2rem;
  color: #444;
}

.secondary-header nav a {
  color: #666;
  font-size: 0.9rem;
}

.secondary-header nav a:hover {
  color: #007bff;
}

/* --- Image Styles --- */
.round-img {
  border-radius: 16px; /* Stärker abgerundet */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); /* Dezenterer Schatten für Bilder */
}

/* --- Drag-Me (Positioning) --- */
.drag-me-old {
  position: fixed;
  width: 100%;
  top: 0px;
  left: 0px;
  cursor: grab; /* Greif-Cursor */
  z-index: 999; /* Stellt sicher, dass es oben liegt */
}

.drag-me:active {
  cursor: grabbing; /* Greift-Cursor beim Ziehen */
}
