#dashboardContainer {
  width: 90%;
  margin: auto;
  border-radius: 10px;
  background: white;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  height: 720px;
  overflow: hidden;
}

#barsContainer {
  transition: transform 0.8s ease;
  position: relative;
}

.service-row {
  margin-bottom: 22px;
}

.bar-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background-color: #1976d2;
  color: white;
  text-align: center;
  font-weight: 600;
  font-size: 12px;
  border-radius: 6px 6px 0 0;
  position: sticky;
  top: 0;
  z-index: 2;
  border-bottom: 3px solid #e0e0e0;
  margin-bottom: 8px;
}

.bar-header div {
  padding: 8px 4px;
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}

.bar-header div:last-child {
  border-right: none;
}

.bar-container {
  display: flex;
  height: 28px;
  border-radius: 5px;
  overflow: hidden;
  text-align: center;
  font-size: 10px;
  font-weight: bold;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.bar-part {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
  border-right: 1px solid #ccc;
}

.bar-part:last-child {
  border-right: none;
}

.info-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
  gap: 12px;
  font-size: 12px;
  color: #222;
  line-height: 1.2;
}

.order-text {
  font-style: italic;
  color: #444;
}

.clock {
  font-family: monospace;
  white-space: nowrap;
}
