﻿h3 {
  color: #005EB8;
  font-weight: bolder;
  font-size: 16px;
  margin-bottom: 1rem;
}
.status-vertical-container {
  top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.status-border {
  border: 1.5px solid #bbb;
  border-radius: 8px;
  padding: 0.75rem 0.5rem;
  background: #fafbfc;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.status-vertical-container > div {
  position: relative;
  padding-left: 10px;
  padding-right: 10px;
}
.status-vertical-container > div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 6px;
  width: 2px;
  height: calc(100% - 20px);
  background: #cccccc;
}
.tab-status-draft {
  background-color: rgba(149, 165, 166, 0.15) !important;
  /* Blau transparent */
}
.tab-status-draft .status-dot {
  background-color: #95a5a6;
  /* Grau */
}
.tab-status-processing {
  background-color: rgba(241, 196, 15, 0.15) !important;
}
.tab-status-processing .status-dot {
  background-color: #f1c40f;
  /* Gelb */
}
.tab-status-accepted {
  background-color: rgba(46, 204, 113, 0.15) !important;
}
.tab-status-accepted .status-dot {
  background-color: #2ecc71;
  /* Gr�n */
}
.tab-status-rejected {
  background-color: rgba(231, 76, 60, 0.15) !important;
}
.tab-status-rejected .status-dot {
  background-color: #e74c3c;
  /* Rot */
}
.tab-status-approved {
  background-color: rgba(52, 152, 219, 0.15) !important;
}
.tab-status-approved .status-dot {
  background-color: #3498db;
}
.tab-status-registered {
  background-color: rgba(26, 188, 156, 0.15) !important;
}
.tab-status-registered .status-dot {
  background-color: #1abc9c;
}
.tab-status-forwarded {
  background-color: rgba(22, 160, 133, 0.15) !important;
}
.tab-status-forwarded .status-dot {
  background-color: #16a085;
}
.tab-status-send {
  background-color: rgba(155, 89, 182, 0.15) !important;
}
.tab-status-send .status-dot {
  background-color: #9b59b6;
}
.table-attachments {
  border-radius: 5px;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
}
.table-attachments thead th {
  background: #ccc;
  border-top: none;
}
.anzahl-inline {
  font-size: 0.8rem;
  white-space: nowrap;
  color: #555;
}
.anzahl-inline .label {
  margin-right: 2px;
}
.anzahl-inline .value {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
/* dezente Farben */
.anzahl-inline .total {
  color: #222;
}
.anzahl-inline .released {
  color: #c47f00;
  /* dezent orange */
}
.anzahl-inline .active {
  color: #2f7d32;
  /* dezent gr�n */
}
.anzahl-inline .sep {
  color: #999;
  margin: 0 4px;
}
.collapse-chevron {
  transition: transform 0.2s ease;
}
[aria-expanded="true"] .collapse-chevron {
  transform: rotate(90deg);
}
.loader-overlay {
  display: none;
  /* per JS ein/aus */
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader-content {
  text-align: center;
  padding: 3rem 4rem;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.loader-content i {
  font-size: 4rem;
  color: #0d6efd;
}
.loader-text {
  margin-top: 1.25rem;
  font-size: 0.12rem;
  color: #495057;
}