/* ===== LGSports 退款样式 ===== */
/* 退款状态标签 + 退款按钮 + 退款确认弹窗 */
/* 来源：原 payment.css 的退款部分 */

/* 退款状态标签 */
.refund-status {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}

.refund-status--pending {
  background: #fff7e6;
  color: #d48806;
}

.refund-status--success {
  background: #f6ffed;
  color: #389e0d;
}

.refund-status--failed {
  background: #fff2f0;
  color: #cf1322;
}

/* 退款按钮 */
.btn-refund {
  background: none;
  border: 1px solid #ff4d4f;
  color: #ff4d4f;
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-refund:hover {
  background: #ff4d4f;
  color: #fff;
}

.btn-refund:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* 退款确认弹窗 */
.refund-confirm {
  padding: 24px;
  text-align: center;
}

.refund-confirm h4 {
  margin: 0 0 12px 0;
  font-size: 16px;
}

.refund-confirm .refund-amount {
  font-size: 24px;
  font-weight: 700;
  color: #ff4d4f;
  margin-bottom: 12px;
}

.refund-confirm .refund-hint {
  font-size: 13px;
  color: var(--text-secondary, #666);
  margin-bottom: 16px;
}

.refund-confirm .refund-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.refund-confirm .refund-actions button {
  padding: 8px 24px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.refund-confirm .refund-actions .btn-cancel {
  background: var(--bg-secondary, #f5f5f5);
  border: 1px solid var(--border-color, #d9d9d9);
  color: var(--text-primary, #333);
}

.refund-confirm .refund-actions .btn-confirm-refund {
  background: #ff4d4f;
  border: none;
  color: #fff;
}

.refund-confirm .refund-actions button:hover {
  opacity: 0.85;
}
