body {
  background-color: #f8f9fa;
}

.header-bar, .footer-bar {
  background-color: #e3f2fd;
  color: #000;
  padding: 1rem 0;
}

.bouncing-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: red;
  border-radius: 50%;
  animation: none;
  margin-right: 6px;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

a {
  text-decoration: none;
  color: #003366;
}

a:hover {
  color: #0056b3;
  font-weight: bold;
}

.footer-bar a {
  font-size: 0.95rem;
  margin-bottom: 4px;
  display: block;
}

.footer-col {
  border-right: 1px solid #ccc;
}

.footer-col:last-child {
  border-right: none;
}

.ki-status-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 10px;
}

.ki-status-wrapper small {
  margin-top: 2px;
}

.status-box {
  background: rgba(255,255,255,0.9);
  border: 1px solid #ccc;
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(4px);
  height: 160px;
  display: flex;
}

.status-box .col-md-4 {
  border-right: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.status-box .col-md-4:last-child {
  border-right: none;
}

.status-box .inner-row {
  border-bottom: 1px solid #ccc;
  padding: 0.5rem 0;
}

.status-box .inner-row:last-child {
  border-bottom: none;
}

  .tile {
    width: 140px;
    height: 140px;
    border-radius: 8px;
    border: 1px solid #c3e6cb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px;
    font-size: 0.85rem;
    text-align: center;
    flex: 0 0 auto;
    cursor: pointer;
    position: relative;
  }
  .tile:hover {
    box-shadow: 0 0 6px #aaa;
  }
  .tile-newest {
    border: 2px solid #1b891b;
    font-weight: bold;
  }
  .table th, .table td {
    border: none !important;
  }
  .table tbody tr {
    border-bottom: 1px solid #ddd;
  }
  .table tbody tr:last-child {
    border-bottom: none;
  }
  .table-hover tbody tr:hover {
    background-color: #f8f9fa;
  }
@keyframes rotate-hourglass {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hourglass {
  font-size: 1rem; /* vorher 1.5rem */
  animation: rotate-hourglass 1.5s linear infinite;
  display: inline-block;
  vertical-align: middle;
  transform-origin: center center;
  margin-top: 0px;
}

.pagination-controls a {
  margin: 0 4px;
  text-decoration: none;
  cursor: pointer;
  color: #007bff;
}
.pagination-controls a:hover {
  text-decoration: underline;
}