/* ===== ESTILO GENERAL PARA TODAS LAS TABLAS ===== */
table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.774);
  font-family: "Segoe UI", Tahoma, sans-serif;
}

/* Encabezado */
table thead {
  background: #062a56;
  color: #fff;
}

table thead th {
  padding: 14px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* Filas */
table tbody tr {
  border-bottom: 1px solid #062a56;
  transition: background 0.2s ease;
}

table tbody tr:hover {
  background: #cdced0;
}

/* Celdas */
table td {
  padding: 12px 14px;
  font-size: 14px;
  color: #333;
  border-bottom: #062a56 1px solid;
}
th {
  border: #f1f3f6 1px solid;
}
/* Última fila sin borde */
table tbody tr:last-child {
  border-bottom: none;
}

/* Estado tipo badge */
.badge {
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
}
.input-lock {
  background: #f1f3f6;
  cursor: not-allowed;
  opacity: 0.9;
}
