body {
  font-family: Arial, sans-serif;
  background-color: #111;
  background-image: url('/imgs/WorkordersOverviewBackground.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: white;
  margin: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  gap: 30px;
}

.main-container {
  background-color: rgba(0, 0, 0, 0.75); /* semi-transparent dark background */
  padding: 2rem;
  border-radius: 12px;
  max-width: 700px;
  width: 90%;
  margin: 2rem auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

h1 { 
  color: gold; 
  margin-bottom: 1rem; 
}

h2 { 
  color: lightblue; 
  margin: 0 0 0.5rem 0; 
}

.container { 
  display: flex; 
  gap: 1rem; 
  margin-bottom: 2rem; 
}

.list,
.bottom-list {
  background-color: #222;
  border: 1px solid #555;
  border-radius: 8px;
  padding: 1rem;
}

.list {
  flex: 1;
  overflow-y: auto;
  max-height: 400px;
}

.bottom-list {
  max-height: 200px;
  overflow-y: auto;
}

.work-order {
  border-bottom: 1px solid #444;
  padding: 0.5rem 0;
}

.work-order:last-child { border-bottom: none; }

.hidden { display: none; }

/* small responsive tweak */
@media (max-width: 800px) {
  .container { flex-direction: column; }
}
