/* Tabella requisiti — palette brand */
.requirements-table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.requirements-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1000px;
}

.requirements-table thead {
  background-color: #1e3a8a;
  color: #fff;
}

.requirements-table th {
  padding: 1rem;
  font-weight: 600;
  text-align: left;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 2px solid #172554;
}

.requirements-table td {
  padding: 1rem;
  vertical-align: top;
  border-bottom: 1px solid #e8eef5;
}

.requirements-table tbody tr {
  transition: background-color 0.15s ease;
}

.requirements-table tbody tr:hover {
  background-color: rgba(30, 58, 138, 0.04);
}

.requirement-title {
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 0.25rem;
}

.requirement-domain {
  font-size: 0.875rem;
  color: #64748b;
}

.status-badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.status-complete {
  background-color: rgba(30, 58, 138, 0.1);
  color: #1e3a8a;
  border: 1px solid rgba(30, 58, 138, 0.25);
}

.status-partial {
  background-color: #f1f5f9;
  color: #1e3a8a;
  border: 1px solid #cbd5e1;
}

.status-missing {
  background-color: #fff;
  color: #1e3a8a;
  border: 1px dashed #94a3b8;
}

.evidence-list,
.missing-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.evidence-item,
.missing-item {
  font-size: 0.875rem;
  padding: 0.25rem 0;
  border-bottom: 1px dotted #e8eef5;
}

.missing-item {
  color: #334155;
  font-weight: 500;
}

.no-evidence {
  font-size: 0.875rem;
  color: #64748b;
  font-style: italic;
}

.complete-status {
  color: #1e3a8a;
  font-weight: 600;
  font-size: 0.875rem;
}

.severity-level {
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.severity-low,
.severity-medium,
.severity-high,
.severity-critical {
  color: #1e3a8a;
  background-color: rgba(30, 58, 138, 0.08);
  border: 1px solid rgba(30, 58, 138, 0.15);
}
