/* ===========================================================
   report.css v7.5 – Kalenderblatt-Stil (hell, orange/blau)
   =========================================================== */

/* --- Grundlayout --- */
body {
  font-family: "Inter", Arial, sans-serif;
  background: #f8fafc;
  color: #0f172a;
  margin: 0;
  padding: 0;
  line-height: 1.4;
}

h2, h3, h4 {
  color: #fb923c; /* Orange Akzent */
  margin-top: 0.75rem;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

label {
  display: block;
  font-weight: 500;
  color: #334155;
  margin-bottom: 0.25rem;
}

input, select, textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: .45rem .6rem;
  color: #0f172a;
  font-size: 0.95rem;
  transition: border-color .2s, box-shadow .2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59,130,246,0.2);
}

/* --- Buttons --- */
.btn {
  cursor: pointer;
  border: 1px solid #fb923c;
  background: #fff7ed;
  color: #92400e;
  padding: .45rem .9rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all .15s ease;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.btn:hover {
  background: #ffedd5;
  transform: translateY(-1px);
}
.btn.active {
  background: #22c55e;
  border-color: #16a34a;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 0 4px rgba(34,197,94,0.4);
}
.btn.accent {
  background: #3b82f6;
  border-color: #2563eb;
  color: #fff;
}
.btn.accent:hover {
  background: #2563eb;
}
.btn.danger {
  background: #ef4444;
  border-color: #dc2626;
  color: #fff;
}
.btn.danger:hover {
  background: #dc2626;
}

/* --- Straßenfarben --- */
.btn.blue {
  border-color: #3b82f6;
  background: #eff6ff;
  color: #1e3a8a;
}
.btn.blue:hover {
  background: #dbeafe;
}
.btn.blue.active {
  background: #2563eb;
  color: #fff;
}

.btn.green {
  border-color: #16a34a;
  background: #ecfdf5;
  color: #064e3b;
}
.btn.green:hover {
  background: #bbf7d0;
}
.btn.green.active {
  background: #16a34a;
  color: #fff;
}

/* --- Container & Layout --- */
.card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.9rem;
  margin-bottom: 0.8rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.box {
  background: #f9fafb;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: .6rem;
}

.btnrow {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: .3rem;
}

.groupRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}

.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}

/* --- Überschriften & kleine Titel --- */
.pilltitle {
  font-size: .85rem;
  font-weight: 600;
  color: #3b82f6;
  margin-bottom: .25rem;
}
.pilltitle.blue { color: #3b82f6; }
.pilltitle.green { color: #16a34a; }

/* --- Fade Animation --- */
.fade-in {
  animation: fade .2s ease-out;
}
@keyframes fade {
  from { opacity: 0; transform: translateY(2px); }
  to { opacity: 1; transform: none; }
}

/* --- Freie Straße & Text --- */
.freeStreet {
  display: flex;
  gap: .4rem;
  margin-top: .5rem;
}

.radioLabel {
  cursor: pointer;
  user-select: none;
}

/* --- Druckfreundliche Tabelle & A5-Optimierung --- */
@media print {
  body {
    background: #fff;
    color: #000;
  }
  .btn, input, select, textarea {
    box-shadow: none;
  }
  .card {
    border: none;
    box-shadow: none;
  }
}

/* --- Visuelle Details --- */
input::placeholder,
textarea::placeholder {
  color: #94a3b8;
}

.section-title h2 {
  margin: 0 0 .25rem 0;
}

button:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}
