body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background: #f9fafb;
  margin: 0;
  padding: 20px;
  color: #333;
}

/* Kopfbereich (Ticker + Logo) */
.top-bar {
  display: flex;
  align-items: center;
  background: #e3f2fd;
  padding: 16px 30px;
  width: 100%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  border-bottom: 2px solid #90caf9;
  border-radius: 0 0 12px 12px;
  position: relative;
  z-index: 100;
}

.logo-container {
  flex-shrink: 0;
  margin-right: 20px;
}

.logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.ticker-container {
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  position: relative;
}

.ticker {
  display: inline-flex;
  animation: ticker-scroll 25s linear infinite;
  font-size: 24px;
  font-weight: 600;
  color: #1565c0;
  align-items: center;
  gap: 50px; /* Abstand zwischen original und Clone */
  padding-left: 100%;
}

.ticker-track {
  display: inline-block;
  white-space: nowrap;
  animation: ticker-scroll 25s linear infinite;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Board / Spalten */
.board {
  display: flex;
  flex-wrap: nowrap;
  gap: 25px;
  justify-content: center;
  align-items: flex-start;
  overflow-x: auto;
  padding-bottom: 20px;
  background-color: #fff;
}

.column {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  width: 180px;
  min-height: 400px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
}

.column h2 {
  font-size: 18px;
  margin-bottom: 12px;
  text-align: center;
  color: #555;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
}

/* Karten */
.card {
  background: #e9eef3;
  margin: 6px 0;
  padding: 10px 8px;
  border-radius: 6px;
  text-align: center;
  font-weight: 500;
  transition: background-color 0.3s;
}

.card:hover {
  background-color: #dce6f0;
  cursor: pointer;
}

/* Statusfarben */
.dot.red     { background-color: #e31313ff; }
.dot.yellow  { background-color: #ff7300ff; }
.dot.green   { background-color: #13e339ff; }

/* Timer + Legende unten */
.bottom-bar {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
}

.update-info {
  font-size: 14px;
  font-family: sans-serif;
  background-color: #f2f2f2;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.update-info.green  { background-color: #e6f4ea; color: #1b5e20; }
.update-info.orange { background-color: #fff3e0; color: #ef6c00; }
.update-info.red    { background-color: #ffebee; color: #b71c1c; }

.legend {
  display: flex;
  gap: 16px;
  font-size: 14px;
  font-weight: 500;
}

.legend .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 6px;
}

.card.hj {
  opacity: 0.4 !important;
}