/* ClaimsAssist Sach – Import base styles from Kfz + Sach-specific additions */
@import url('../../../kfz/assets/css/app.css');

/* ── INFO BOX (Elementar-Erklaerung) ── */
.info-box {
  display: flex;
  gap: 12px;
  padding: 16px 18px;
  background: var(--info-bg);
  border: 1px solid #bbdefb;
  border-radius: var(--radius-sm);
  margin-top: 16px;
}
.info-box-icon {
  font-size: 1.4em;
  flex-shrink: 0;
  line-height: 1.3;
}
.info-box-content {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}
.info-box-content strong {
  display: block;
  margin-bottom: 6px;
  color: var(--info);
  font-size: 15px;
}
.info-box-content p {
  margin: 6px 0;
}
.info-box-content ul {
  margin: 8px 0;
  padding-left: 18px;
}
.info-box-content li {
  margin: 4px 0;
}
.info-box-content em {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ── WARNING BOX (Ueberspannung-Hinweis) ── */
.warning-box {
  display: flex;
  gap: 12px;
  padding: 18px 20px;
  background: #FFF8E1;
  border: 1.5px solid #FFB300;
  border-left: 4px solid #FF8F00;
  border-radius: var(--radius-sm);
  margin-top: 16px;
}
.warning-box-icon {
  font-size: 1.5em;
  flex-shrink: 0;
  line-height: 1.3;
}
.warning-box-content {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}
.warning-box-content strong {
  display: block;
  margin-bottom: 8px;
  color: #E65100;
  font-size: 15px;
}
.warning-box-content ul {
  margin: 8px 0;
  padding-left: 18px;
}
.warning-box-content li {
  margin: 6px 0;
}
.warning-box-content li strong {
  display: inline;
  color: inherit;
  font-size: inherit;
  margin: 0;
}

/* ── Option card desc (additional text below label) ── */
.option-card-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.4;
  text-align: center;
  max-width: 180px;
}
.option-card {
  flex-direction: column;
  align-items: center;
  padding: 20px 16px;
  min-height: 140px;
  justify-content: flex-start;
}
.option-card .option-card-icon {
  margin-bottom: 6px;
}

/* ── Erweiterte Autocomplete-Items (PLZ/Ort-Meta) ── */
.ac-item strong {
  font-weight: 600;
  color: var(--text);
}
.ac-item:hover strong { color: var(--primary); }
.ac-meta {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 4px;
}
.ac-dropdown {
  max-height: 280px;
  overflow-y: auto;
}

/* ── Highlight-Pulse fuer KI-Hinweise (einmalig) ── */
@keyframes ca-pulse-once {
  0%   { box-shadow: 0 0 0 0 rgba(212, 152, 42, 0.55); }
  60%  { box-shadow: 0 0 0 14px rgba(212, 152, 42, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 152, 42, 0); }
}
.pulse-once {
  animation: ca-pulse-once 1.6s ease-out 1;
  border-radius: var(--radius-sm);
}
