* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f4f7fa;
  padding: 30px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 2px;
  color: #333;
}

.top-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-weight: bold;
  color: #555;
}

.table-container {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead {
  background: #007bff;
  color: white;
}

th,
td {
  padding: 14px;
  text-align: center;
}

th {
  font-size: 14px;
}

tbody tr:nth-child(even) {
  background: #f9f9f9;
}

tbody tr:hover {
  background: #eef5ff;
}

/* Status Badges */
.badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  color: white;
}

.waiting {
  background: #f0ad4e;
}

.ongoing {
  background: #007bff;
}

.seen {
  background: #28a745;
}

/* Buttons */
.btn {
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  background: #007bff;
  color: white;
  font-size: 12px;
  transition: 0.3s;
}

.btn:hover {
  background: #0056b3;
}

.active {
  background: #17a2b8;
}

.disabled {
  background: #6c757d;
  cursor: not-allowed;
}
