/* propuestaPedido.css */
.abn-pp-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: grid;
  place-items: center;
  z-index: 99999;
}

.abn-pp-card{
  width: min(520px, 92vw);
  background: #fff;
  border-radius: 14px;
  padding: 18px 18px 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.abn-pp-title{
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.abn-pp-sub{
  font-size: 13px;
  opacity: .8;
  margin-bottom: 14px;
}

.abn-pp-option{
  user-select: none;
  background: #f3f6ff;
  border: 1px solid #d6e1ff;
  padding: 14px 12px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  margin-bottom: 10px;
}

.abn-pp-option:hover{
  background: #eaf0ff;
}

.abn-pp-cancel{
  user-select: none;
  text-align: center;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  opacity: .75;
}

.abn-pp-cancel:hover{
  background: #f5f5f5;
  opacity: 1;
}

body.abn-doc-orderProposal .fila-total-oferta td{
  /* opcional: algún estilo visual para diferenciar contexto */
}