/* --- 通用消息对话框样式 --- */
.modal-message {
  text-align: center;
  padding: 1.5rem 1rem;
}

.modal-message .icon-wrapper {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-message .icon-wrapper svg {
  width: 32px;
  height: 32px;
}

/* 错误状态样式 */
.modal-message.error .icon-wrapper {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.modal-message.error .modal-title {
  color: #b91c1c;
}

/* 成功状态样式 */
.modal-message.success .icon-wrapper {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.modal-message.success .modal-title {
  color: #047857;
}

/* 警告状态样式 */
.modal-message.warning .icon-wrapper {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.modal-message.warning .modal-title {
  color: #b45309;
}

.modal-message p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-top: 0.5rem;
  line-height: 1.6;
}
