/* app.css — Estilos personalizados del sistema UNAQ */

body {
  background-color: #f5f6fa;
  font-size: 0.92rem;
}

/* Navbar */
.navbar-brand {
  letter-spacing: 0.04em;
}

/* Tarjetas */
.card {
  border-radius: 0.625rem;
}

/* Tablas */
.table th {
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6c757d;
  background-color: #f8f9fa;
}

.table td {
  vertical-align: middle;
}

/* Badges de estatus */
.badge-funcional {
  background-color: #d1e7dd;
  color: #0a3622;
}

.badge-no-funcional {
  background-color: #f8d7da;
  color: #58151c;
}

/* Foto de empleado en tabla */
.avatar-sm {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50%;
}

.avatar-placeholder {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #dee2e6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-size: 1rem;
}

/* Botones de acción en tabla */
.btn-accion {
  padding: 0.2rem 0.45rem;
  font-size: 0.8rem;
}

/* Nombre de red — fuente monoespaciada */
.nombre-red {
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  background: #f1f3f5;
  padding: 2px 6px;
  border-radius: 4px;
}

/* Paginación compacta */
.pagination-sm .page-link {
  font-size: 0.8rem;
}

/* Campos requeridos */
label.required::after {
  content: ' *';
  color: #dc3545;
}
