/* ===== BID STATUS ACTION MODALS (PR507) ===== */
.bsa-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,26,46,0.55);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bsa-modal {
  background: #fff;
  border-radius: 10px;
  padding: 28px 28px 20px;
  width: 380px;
  max-width: calc(100vw - 32px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}
.bsa-modal-title {
  font-size: 17px;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 12px;
}
.bsa-modal-body {
  font-size: 13px;
  color: #7A7974;
  margin-bottom: 14px;
  line-height: 1.5;
}
.bsa-modal-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #7A7974;
  margin-bottom: 6px;
}
.bsa-modal-select,
.bsa-modal-input,
.bsa-modal-textarea {
  width: 100%;
  border: 1px solid #D4D1CA;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 13px;
  font-family: inherit;
  color: #28251D;
  background: #fff;
  box-sizing: border-box;
  margin-bottom: 10px;
  transition: border-color 0.15s;
}
.bsa-modal-select:focus,
.bsa-modal-input:focus,
.bsa-modal-textarea:focus { outline: none; border-color: #FF6B00; }
.bsa-modal-textarea { resize: vertical; min-height: 52px; }

.bsa-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
}
.bsa-modal-cancel {
  background: none;
  border: 1px solid #D4D1CA;
  border-radius: 6px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  color: #7A7974;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}
.bsa-modal-cancel:hover { background: #F0EFEC; }
.bsa-modal-confirm {
  border: none;
  border-radius: 6px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}
.bsa-btn-decline { background: #A12C7B; }
.bsa-btn-decline:hover { background: #8a2469; }
.bsa-btn-award  { background: #437A22; }
.bsa-btn-award:hover  { background: #35621b; }
