/* =============================================================================
   delta_stable_auct.css — Auction entry panel styles
   ============================================================================= */

.shl_auct_panel {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.shl_auct_title {
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  border-bottom: 1px solid #dde3eb;
  padding-bottom: 6px;
}

.shl_auct_row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.shl_auct_label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #64748b;
}

.shl_auct_input {
  padding: 6px 8px;
  font-size: 13px;
  border: 1px solid #cdd4dc;
  border-radius: 4px;
  width: 100%;
  font-family: inherit;
}

.shl_auct_input:focus {
  outline: none;
  border-color: #6a9ec4;
  box-shadow: 0 0 0 2px rgba(106,158,196,0.15);
}

.shl_auct_hint {
  font-size: 11px;
  color: #94a3b8;
}

.shl_auct_hint a {
  color: #3a7abf;
}

.shl_auct_warn {
  font-size: 12px;
  color: #92400e;
  background: #fef3c7;
  border-radius: 4px;
  padding: 5px 8px;
}

.shl_auct_code {
  font-family: monospace;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #1e293b;
  background: #f1f5f9;
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid #dde3eb;
  user-select: none;
  -webkit-user-select: none;
}

.shl_auct_btn {
  width: 100% !important;
  padding: 8px 16px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #fff !important;
  background: #15803d !important;
  border: none !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  min-height: 34px !important;
}

.shl_auct_btn:disabled {
  background: #94a3b8 !important;
  cursor: not-allowed !important;
}

.shl_auct_btn:not(:disabled):hover {
  background: #166534 !important;
}

.shl_auct_check_label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #1e293b;
  cursor: pointer;
  line-height: 1.5;
}

.shl_auct_check_label input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  cursor: pointer;
}