#bestellungen-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}

.panel {
  flex: 1;
  min-width: 340px;
}

.panel-title {
  font-weight: 600;
  margin-bottom: 6px;
}

.update-info {
  text-align: right;
  font-size: 0.85em;
  color: #555;
  margin-top: 6px;
}

.fullscreen {
  position: fixed !important;
  inset: 64px 12px 48px 12px;
  z-index: 998;
  background: #fff;
  transition: all 0.3s ease;
}

.hidden {
  display: none !important;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.restore-bar {
  display: none;
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: #eef4ff;
  border: 1px solid #cfe0ff;
  padding: 8px 12px;
  text-align: center;
  border-radius: 6px;
  z-index: 999;
  cursor: pointer;
}
.restore-bar:hover {
  background: white;
}

.status-label {
  font-weight: 600;
}
.status-label.offen {
  color: orange;
}
.status-label.in_bearbeitung {
  color: blue;
}
.status-label.fertig {
  color: green;
}
.status-label.bezahlt {
  color: purple;
}
.status-label.storniert {
  color: red;
}

.status-legend {
  margin-top: 20px;
  padding: 10px;
  border: 1px solid #cfe0ff;
  border-radius: 6px;
  background: #eef4ff;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.status-legend .status-label {
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #cfe0ff;
}/*# sourceMappingURL=bestellungen.css.map */