/* views/ingresos.css — estados de pago y toggle de moneda */

.ing-stat {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px
}

.ing-Pendiente {
  background: #fef3c7;
  color: #92400e
}

.ing-Pagado {
  background: #d1fae5;
  color: #065f46
}

.ing-Vencido {
  background: #fee2e2;
  color: #991b1b
}

.cur-toggle {
  display: inline-flex;
  border: 1px solid var(--bd);
  border-radius: 6px;
  overflow: hidden;
  font-size: 12px;
  margin-left: 8px
}

.cur-toggle button {
  background: #fff;
  border: none;
  padding: 4px 12px;
  cursor: pointer;
  font-weight: 500;
  color: var(--ts);
  font-family: inherit
}

.cur-toggle button.on {
  background: var(--green);
  color: var(--text)
}
