/* Consola del supervisor (TASK-146) — CSS mínimo, "feas está bien" (orden). */
body {
  font-family: system-ui, sans-serif;
  margin: 0;
  padding: 0;
  color: #1a1a1a;
  background: #f5f5f5;
}
header {
  background: #20232a;
  color: white;
  padding: 0.75rem 1rem;
}
header h1 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem 0;
}
details summary {
  cursor: pointer;
  color: #ddd;
  font-size: 0.85rem;
}
#config-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
  align-items: flex-end;
}
#config-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.75rem;
  color: #ccc;
}
nav {
  display: flex;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  background: #e5e5e5;
}
.tab {
  padding: 0.5rem 1rem;
  border: 1px solid #ccc;
  background: white;
  cursor: pointer;
}
.tab--active {
  background: #20232a;
  color: white;
  font-weight: bold;
}
main {
  padding: 1rem;
}
.table {
  border-collapse: collapse;
  width: 100%;
  margin: 0.5rem 0 1.5rem 0;
  background: white;
}
.table th,
.table td {
  border: 1px solid #ccc;
  padding: 0.4rem 0.6rem;
  text-align: left;
  font-size: 0.9rem;
}
.table th {
  background: #eee;
}
.row--protected {
  background: #fff3cd;
}
.row--gap {
  background: #f8d7da;
}
.row--absent {
  background: #f8d7da;
}
.row--late {
  background: #fff3cd;
}
.row--overdue {
  background: #f8d7da;
}
.hint {
  font-size: 0.85rem;
  color: #555;
}
.small {
  font-size: 0.7rem;
  color: #777;
  word-break: break-all;
}
.status {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.5rem;
  border-radius: 4px;
  font-size: 0.9rem;
}
.status--info {
  background: #d1ecf1;
}
.status--success {
  background: #d4edda;
}
.status--error {
  background: #f8d7da;
  font-weight: bold;
}
.error {
  color: #a94442;
}
.banner {
  padding: 0.6rem 0.9rem;
  margin: 0.5rem 0;
  border-radius: 4px;
  font-weight: bold;
}
.banner--human-required {
  background: #ffe69c;
  border: 2px solid #cc9a00;
  color: #4d3800;
}
.banner--contradiction {
  background: #f8d7da;
  border: 2px solid #a94442;
  color: #4d0000;
}
.badge {
  display: inline-block;
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: bold;
}
.badge--auto {
  background: #d4edda;
}
.badge--human {
  background: #f8d7da;
}
.badge--semiauto {
  background: #fff3cd;
}
form label {
  display: block;
  margin: 0.4rem 0;
}
input[type="text"],
input[type="date"],
textarea {
  width: 100%;
  max-width: 400px;
  box-sizing: border-box;
  font-family: inherit;
}
textarea {
  max-width: 500px;
  font-family: monospace;
}
button {
  padding: 0.4rem 0.8rem;
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
fieldset {
  margin: 0.5rem 0;
  border: 1px solid #ccc;
}
.fieldset-like {
  margin: 0.5rem 0;
  padding: 0.5rem;
  border: 1px solid #ccc;
  background: white;
}
