body {
  background: #121212;
  color: #e0e0e0;
  font-family: Arial, sans-serif;
  padding: 20px;
  text-align: center;
}

h1 {
  margin-bottom: 20px;
  color: #ffffff;
}

.form-container {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

input, select {
  background: #1e1e1e;
  color: #fff;
  border: 1px solid #333;
  padding: 10px;
  border-radius: 5px;
  min-width: 150px;
}

#add-job-btn {
  background: #4caf50;
  padding: 10px 18px;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

#add-job-btn:hover {
  background: #45a049;
}

.table-wrapper {
  overflow-x: auto;
  margin-top: 20px;
}

.job-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.job-table th, .job-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #333;
  text-align: center;
}

.job-table th {
  background: #1f1f1f;
  color: #e0e0e0;
}

.job-table tr:hover {
  background: #1b1b1b;
}

.status-badge {
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
  color: #fff;
}

.incomplete { background: #ff4d4d; }
.inprocess { background: #ff9800; }
.completed { background: #4caf50; }
.delivered { background: #2196f3; }

.btn-delete {
  background: #e63946;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

.btn-delete:hover {
  background: #d62828;
}

.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #333;
  padding: 12px 18px;
  border-radius: 8px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.delivered-title {
  margin-top: 40px;
  color: #e0e0e0;
  font-size: 1.4rem;
  text-align: center;
}

.placeholder-row {
  text-align: center;
  color: #aaaaaa;
  font-style: italic;
}
