/* ============================================================
   Admin Vendedores — modal centralizado
   ============================================================ */

.vend-row { cursor: pointer; }

.vend-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 900;
  animation: vend-fade 180ms ease;
}
@keyframes vend-fade { from { opacity: 0 } to { opacity: 1 } }

.vend-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 950;
  padding: 20px;
  pointer-events: none;
}
.vend-modal-card {
  width: 100%;
  max-width: 460px;
  pointer-events: auto;
  animation: vend-pop 220ms ease;
  max-height: 90vh;
  overflow-y: auto;
}
@keyframes vend-pop {
  from { transform: translateY(20px) scale(0.96); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
