.filters {
  display: grid;
  gap: 14px;
}

.tabs {
  display: flex;
  gap: 8px;
}

.tab {
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

.tab.active {
  background: #2f7d32;
  color: #fff;
  border-color: #2f7d32;
}

.search input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
}

.table-card {
  padding: 0;
}

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

.reports-table th,
.reports-table td {
  padding: 14px;
  text-align: left;
  font-size: 14px;
}

.reports-table thead {
  background: #f9fafb;
}

.reports-table tbody tr {
  border-top: 1px solid #eef0f5;
}

.reports-table tbody tr:hover {
  background: #f9fafb;
  cursor: pointer;
}

.photo-cell img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
}

.badge {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.badge.low {
  background: #f3f4f6;
}
.badge.medium {
  background: #fff7ed;
  color: #9a3412;
}
.badge.high {
  background: #fef2f2;
  color: #b91c1c;
}

.status.pending {
  background: #fef2f2;
  color: #b91c1c;
}
.status.in_progress {
  background: #fff7ed;
  color: #9a3412;
}
.status.completed {
  background: #ecfdf5;
  color: #166534;
}

.menu {
  font-size: 20px;
  cursor: pointer;
}

.table-footer {
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pagination button {
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  background: #fff;
}
