:root {
  --gtc-border: #e0e0e0;
  --gtc-shadow: 0 4px 12px rgba(0,0,0,0.08);
  --gtc-accent: #4d4d4d;
  --gtc-text: #111;
}

.gtc-container {
  border: 1px solid var(--gtc-border);
  border-radius: 25px;
  padding: 25px;
  box-shadow: var(--gtc-shadow);
  color: var(--gtc-text);
}

.gtc-form label { display:block; font-weight:600; }
.gtc-input {
  width: 100%;
  margin-top: 5px;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 15px; /* Korrektur: 15px */
  border: 1px solid #ccc;
}
.gtc-btn {
  border-radius: 15px;
  background-color: var(--gtc-accent);
  color: #fff;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
}

.gtc-results { margin-top: 20px; border-top: 1px solid #eee; padding-top: 20px; display:none; }

/* Spinner */
.gtc-spinner { display:none; margin-top: 15px; align-items:center; gap:10px; }
.gtc-spinner::before {
  content: "";
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 3px solid #cfcfcf;
  border-top-color: var(--gtc-accent);
  display: inline-block;
  animation: gtc-spin 0.9s linear infinite;
}
@keyframes gtc-spin { to { transform: rotate(360deg); } }

/* Screenreader-only Text */
.gtc-sr-only {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

/* === Trust Checker Ampel (Traffic Light) === */
.tc-traffic-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0 12px;
  padding: 6px 10px;
  border-radius: 12px;
  background: #ebecec;
  border: 1px solid #eee;
}

.tc-traffic-light .tc-bulbs {
  display: inline-flex;
  gap: 6px;
  padding: 6px 8px;
  background: #111;
  border-radius: 999px;
}

.tc-traffic-light .tc-bulb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  opacity: .3;
  display: inline-block;
}

.tc-traffic-light .tc-bulb.red    { background: #e53935; }
.tc-traffic-light .tc-bulb.yellow { background: #fdd835; }
.tc-traffic-light .tc-bulb.green  { background: #43a047; }

.tc-traffic-light .tc-bulb.on {
  opacity: 1;
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,.25),
    0 0 8px currentColor;
}

.tc-traffic-label {
  font-weight: 600;
}

/* Farbe für Überschriften/Listen */
.tc-red   { color: #c62828; }
.tc-green { color: #2e7d32; }

/* Bestehender Wunsch: 15px Radius auf Input */
#gemini-trust-checker-app .gtc-form input.gtc-input,
#gemini-trust-checker-app .gtc-form input[type="text"].gtc-input,
#gemini-trust-checker-app .gtc-form input[type="url"].gtc-input,
#gemini-trust-checker-app .gtc-input {
  border-radius: 15px !important;
  -webkit-border-radius: 15px;
  appearance: none;
  -webkit-appearance: none;
}

/* Override: Ampel-Hintergrund dunkel + bessere Lesbarkeit */
.tc-traffic-light {
  background: #4d4d4d !important;
  color: #fff;                  /* Text/Label gut lesbar auf dunklem BG */
  border-color: transparent;    /* optional: Rahmen ausblenden */
}

.tc-traffic-label {
  color: #fff;                  /* Label explizit auf weiß setzen */
}


