.container {
  max-width: 1400px;   /* 👈 THIS is why it felt small */
  margin: 0 auto;
  padding: 30px;
}

/* FILTER BAR */
.filters {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding: 14px 18px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  width: fit-content;
}

main.container {
  max-width: 1600px;   /* 👈 big admin panel */
  margin: 0 auto;
  padding: 30px;
}

.filters select,
.filters input {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  background: #f9fafb;
  transition: border 0.2s, box-shadow 0.2s;
}

.filters select:focus,
.filters input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

table {
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border-collapse: collapse;
  table-layout: auto;
}

th {
  text-align: left;
  font-weight: 600;
  background: #f9fafb;
  border-bottom: 2px solid #d1d5db;
}

th, td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

tbody tr {
  border-bottom: 1px solid #e5e7eb;
}

.status.active {
  color: #dc2626;
  font-weight: 600;
}

.status.solved {
  color: #16a34a;
  font-weight: 600;
}

.actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.actions button {
  padding: 6px 10px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 13px;
}

.resolve {
  background: #16a34a;
  color: white;
}

.activate {
  background: #f59e0b;
  color: white;
}

.delete {
  background: #ef4444;
  color: white;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(0,0,0,.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
}

.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #16a34a;
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
  opacity: 0;
  transition: .3s;
}

.toast.show {
  opacity: 1;
}



/* Reset button */
.reset-btn {
  padding: 10px 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  background: #e5e7eb;
  color: #374151;
  transition: background 0.2s, transform 0.1s;
}

.reset-btn:hover {
  background: #d1d5db;
}

.reset-btn:active {
  transform: scale(0.96);
}



/* STATUS PILLS */
.status-pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
}

.status-pill.active {
  background: #fee2e2;
  color: #b91c1c;
}

.status-pill.solved {
  background: #dcfce7;
  color: #166534;
}


/* MAP PREVIEW */
.map-preview {
  width: 140px;
  height: 90px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  border: 1px solid #e5e7eb;
  cursor: pointer;
}



.reporter {
  font-size: 13px;
  color: #374151;
}

.reporter small {
  display: block;
  color: #9ca3af;
}