/*
版本: v1.3.3
变更记录:
- v1.3.3 (2026-02-28): 新增导出成功弹窗样式，包含动画效果和自动关闭功能
- v1.3.2 (2026-02-28): 添加 Toast 弹出通知样式，用于导出成功提示
- v1.3.1 (2026-02-28): 统一"已选择列"和"原始表头"的行高，保持视觉一致性
- v1.3.0 (2026-02-28): 简化使用说明样式，保持简洁清晰
- v1.2.0 (2026-02-28): 优化使用说明样式，增加步骤卡片、提示框、代码高亮等视觉元素
- v1.1.0 (2026-02-28): 修复样式冲突，优化对比度和可读性，调整配色方案
- v1.0.0 (2026-02-28): 基于现代设计系统重构，采用 oklch 颜色空间
*/

/* ==================== 设计系统变量 ==================== */
:root {
  /* 颜色系统 - 优化后的配色 */
  --background: #f8f9fa;
  --foreground: #1a1a1a;
  --card: #ffffff;
  --card-foreground: #1a1a1a;
  --popover: #ffffff;
  --popover-foreground: #1a1a1a;
  --primary: #6366f1;
  --primary-foreground: #ffffff;
  --secondary: #e0e7ff;
  --secondary-foreground: #1a1a1a;
  --muted: #f1f3f5;
  --muted-foreground: #6c757d;
  --accent: #ec4899;
  --accent-foreground: #ffffff;
  --destructive: #ef4444;
  --destructive-foreground: #ffffff;
  --border: #dee2e6;
  --input: #ffffff;
  --ring: #6366f1;
  
  /* 字体系统 */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  
  /* 圆角系统 */
  --radius: 0.5rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  
  /* 阴影系统 */
  --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-md: 0 6px 12px -2px rgb(0 0 0 / 0.1), 0 3px 6px -3px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 20px -3px rgb(0 0 0 / 0.1), 0 4px 8px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 30px -5px rgb(0 0 0 / 0.15);
  
  /* 面板固定高度 */
  --panel-fixed-h: clamp(300px, 48vh, 420px);
}

/* ==================== 基础样式 ==================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  color: var(--foreground);
  background: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==================== 布局结构 ==================== */
.app-header {
  padding: 1rem 1.5rem;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.app-header h1 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0;
}

.header-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 1rem 2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 320px 1fr;
  grid-auto-rows: min-content;
  align-items: start;
}

/* 区块定位 */
.container > .card:nth-of-type(1) { grid-column: 1; grid-row: 1; }
.container > .card:nth-of-type(2) { grid-column: 2; grid-row: 1 / span 3; }
.container > .card:nth-of-type(3) { grid-column: 1; grid-row: 2; }
.container > .card:nth-of-type(4) { grid-column: 1; grid-row: 3; }
.container > .card:nth-of-type(5) { grid-column: 1 / span 2; grid-row: 4; }

/* ==================== 卡片组件 ==================== */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.card h2 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0 0 1rem 0;
}

/* 右侧字段选择区 */
.container > .card:nth-of-type(2) {
  min-height: 420px;
  padding-bottom: 1rem;
}

.container > .card:nth-of-type(2) .panel {
  height: var(--panel-fixed-h);
  min-height: var(--panel-fixed-h);
  max-height: var(--panel-fixed-h);
  overflow: hidden;
  scrollbar-gutter: stable;
}

/* ==================== 表单控件 ==================== */
.row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.container > .card:nth-of-type(2) > .row {
  margin-bottom: 1rem;
}

/* 输入框容器 */
.input-wrap {
  position: relative;
  flex: 1 1 0;
  min-width: 260px;
}

.input-wrap > input {
  width: 100%;
}

input[type="text"],
input[type="file"],
select {
  background: var(--input);
  color: var(--foreground);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  outline: none;
  transition: all 0.2s ease;
  font-family: var(--font-sans);
}

input[type="text"]:focus,
select:focus {
  border-color: var(--ring);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

input[type="text"]::placeholder {
  color: var(--muted-foreground);
}

#colInput,
#historySelect,
#sheetName {
  width: 100%;
  flex: 1 1 100%;
}

/* 复选框 */
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  user-select: none;
  font-size: 0.875rem;
  color: var(--foreground);
  transition: color 0.2s ease;
}

.checkbox-label input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  cursor: pointer;
  accent-color: var(--primary);
}

.checkbox-label:hover {
  color: var(--primary);
}

/* ==================== 按钮组件 ==================== */
button {
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--foreground);
  padding: 0.625rem 1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 500;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  transition: all 0.2s ease;
  box-shadow: var(--shadow-xs);
}

button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

button:active {
  transform: translateY(0);
}

button.primary {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

button.primary:hover {
  background: #4f46e5;
  box-shadow: var(--shadow-lg);
}

button.secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
  border-color: var(--secondary);
}

button.secondary:hover {
  background: #c7d2fe;
}

button.ghost {
  background: transparent;
  color: var(--muted-foreground);
  border-color: transparent;
  box-shadow: none;
}

button.ghost:hover {
  background: var(--muted);
  color: var(--foreground);
}

button.ghost.small {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  border-radius: var(--radius-sm);
}

button.ghost.small:hover {
  background: rgba(239, 68, 68, 0.1);
  color: var(--destructive);
}

button.icon-btn {
  width: 2rem;
  height: 2rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 1.25rem;
}

/* ==================== 面板组件 ==================== */
.flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  background: var(--muted);
}

.panel-title {
  color: var(--muted-foreground);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==================== 列表组件 ==================== */
.list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
}

.list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.5rem 0.625rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--card);
  font-size: 0.875rem;
  transition: all 0.2s ease;
  min-height: 2.125rem;
  line-height: 1.25;
}

.list li:hover {
  background: #f8f9fa;
  border-color: var(--primary);
  cursor: pointer;
}

.list.compact li {
  padding: 0.5rem 0.625rem;
}

.list li > span {
  font-size: 0.875rem;
  line-height: 1.25;
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#selectedList li {
  cursor: default;
}

#selectedList li:hover {
  background: var(--card);
  border-color: var(--border);
  cursor: default;
}

#selectedList li button.icon-btn {
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  font-size: 1.125rem;
  line-height: 1;
  flex-shrink: 0;
  border: none;
  background: transparent;
  color: var(--muted-foreground);
  box-shadow: none;
  transition: all 0.2s ease;
}

#selectedList li button.icon-btn:hover {
  background: rgba(239, 68, 68, 0.1);
  color: var(--destructive);
  transform: none;
}

#headersList li:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

/* 滚动条样式 */
.panel .list::-webkit-scrollbar {
  width: 6px;
}

.panel .list::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: var(--radius-sm);
}

.panel .list::-webkit-scrollbar-track {
  background: transparent;
}

.panel .list {
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

/* ==================== 下拉联想 ==================== */
.suggest {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.5rem);
  background: var(--popover);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-height: 280px;
  overflow: auto;
  z-index: 50;
}

.suggest[hidden] {
  display: none;
}

.suggest .item {
  padding: 0.625rem 0.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.15s ease;
}

.suggest .item:hover {
  background: var(--muted);
}

.suggest .item.active {
  background: var(--secondary);
  color: var(--secondary-foreground);
}

.suggest .item.selected {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid var(--primary);
}

.suggest .item.selected:hover {
  background: rgba(99, 102, 241, 0.15);
}

.suggest mark {
  background: rgba(99, 102, 241, 0.2);
  color: inherit;
  padding: 0 0.125rem;
  border-radius: 0.125rem;
}

.suggest-checkbox {
  width: 1rem;
  height: 1rem;
  margin: 0;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: var(--primary);
}

.suggest-label {
  flex: 1;
  cursor: pointer;
  user-select: none;
}

.suggest-confirm {
  margin: 0.5rem 0.5rem 0.75rem;
  padding: 0.625rem 1rem;
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 500;
  font-size: 0.875rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.suggest-confirm:hover {
  background: #4f46e5;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.suggest {
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

/* ==================== 提示文本 ==================== */
.hint {
  color: var(--muted-foreground);
  font-size: 0.75rem;
  margin-top: 0.5rem;
  line-height: 1.5;
}

.hint.info {
  color: var(--muted-foreground);
}

.hint.warn {
  color: #f59e0b;
}

.hint.error {
  color: var(--destructive);
}

/* ==================== 预览表格 ==================== */
.preview-wrap {
  overflow: auto;
  max-height: 320px;
  border-radius: var(--radius-md);
  background: var(--card);
  border: 1px solid var(--border);
}

.preview-table {
  border-collapse: collapse;
  font-size: 0.8125rem;
  table-layout: fixed;
  min-width: 100%;
  width: max-content;
}

.preview-table th,
.preview-table td {
  border: 1px solid var(--border);
  padding: 0.5rem 0.75rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

.preview-table th {
  background: var(--muted);
  color: var(--foreground);
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 1;
}

.preview-table tr:nth-child(even) td {
  background: #f8f9fa;
}

/* ==================== 模态弹窗 ==================== */
.modal[hidden] {
  display: none !important;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal-dialog {
  position: relative;
  width: min(680px, 92vw);
  max-height: 80vh;
  overflow: auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 1.5rem;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.modal-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0;
}

.modal-body {
  font-size: 0.875rem;
  color: var(--foreground);
  line-height: 1.6;
}

/* 使用说明专属样式 */
.help-intro {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.help-intro p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.help-steps {
  margin-bottom: 1.5rem;
}

.help-step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--muted);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--primary);
}

.step-number {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
}

.step-content {
  flex: 1;
}

.step-content h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
}

.step-content p {
  margin: 0 0 0.5rem 0;
  color: var(--foreground);
}

.step-content p:last-child {
  margin-bottom: 0;
}

.help-list {
  margin: 0.5rem 0;
  padding-left: 1.25rem;
  list-style: none;
}

.help-list li {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
  line-height: 1.6;
}

.help-list li::before {
  content: "•";
  position: absolute;
  left: -1rem;
  color: var(--primary);
  font-weight: bold;
}

.help-list li:last-child {
  margin-bottom: 0;
}

.help-tip {
  background: #fff3cd;
  border-left: 3px solid #ffc107;
  padding: 0.75rem;
  margin: 0.75rem 0 0 0;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  color: #856404;
}

.help-tips {
  background: #e7f3ff;
  border: 1px solid #b3d9ff;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}

.help-tips h4 {
  margin: 0 0 0.75rem 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0066cc;
}

.help-note {
  background: #fff5f5;
  border: 1px solid #feb2b2;
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  margin-top: 1rem;
}

.help-note p {
  margin: 0;
  color: #c53030;
  font-size: 0.8125rem;
}

code {
  background: rgba(99, 102, 241, 0.1);
  color: var(--primary);
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: 0.875em;
}

strong {
  font-weight: 600;
  color: var(--foreground);
}

/* ==================== 响应式设计 ==================== */
@media (max-width: 768px) {
  .container {
    display: flex;
    flex-direction: column;
    padding: 1rem 0.75rem 1.5rem;
  }
  
  .flex {
    grid-template-columns: 1fr;
  }
  
  .container > .card:nth-of-type(2) {
    max-height: none;
  }
  
  .input-wrap {
    min-width: 0;
    flex: 1 1 100%;
  }
  
  .app-header {
    padding: 0.875rem 1rem;
  }
  
  .app-header h1 {
    font-size: 1.125rem;
  }
}

/* ==================== 动效优化 ==================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  button:hover {
    transform: none;
  }
}




/* ==================== 模态弹窗内容样式 ==================== */
.modal-body h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 1.25rem 0 0.5rem 0;
}

.modal-body h4:first-child {
  margin-top: 0;
}

.modal-body p {
  margin: 0 0 1rem 0;
  line-height: 1.6;
}

.modal-body ol,
.modal-body ul {
  margin: 0.5rem 0 1rem 0;
  padding-left: 1.5rem;
}

.modal-body li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.modal-body li:last-child {
  margin-bottom: 0;
}


/* ==================== 使用说明样式（简洁版） ==================== */
.modal-body h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 1.25rem 0 0.5rem 0;
}

.modal-body h4:first-child {
  margin-top: 0.75rem;
}

.modal-body p {
  margin: 0 0 0.75rem 0;
  line-height: 1.6;
}

.modal-body ol,
.modal-body ul {
  margin: 0.5rem 0 1rem 0;
  padding-left: 1.5rem;
}

.modal-body li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.modal-body li:last-child {
  margin-bottom: 0;
}


/* ==================== Toast 通知 ==================== */
.toast-container {
  position: fixed;
  top: 5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 320px;
  max-width: 420px;
  pointer-events: auto;
  animation: toastSlideIn 0.3s ease-out;
}

.toast.success {
  border-left: 4px solid #10b981;
}

.toast.error {
  border-left: 4px solid var(--destructive);
}

.toast.warning {
  border-left: 4px solid #f59e0b;
}

.toast.info {
  border-left: 4px solid var(--primary);
}

.toast-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: bold;
}

.toast.success .toast-icon {
  color: #10b981;
}

.toast.error .toast-icon {
  color: var(--destructive);
}

.toast.warning .toast-icon {
  color: #f59e0b;
}

.toast.info .toast-icon {
  color: var(--primary);
}

.toast-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.toast-title {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--foreground);
  line-height: 1.4;
}

.toast-message {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.4;
}

.toast-close {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--muted-foreground);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 1.25rem;
  line-height: 1;
  transition: all 0.2s ease;
}

.toast-close:hover {
  background: var(--muted);
  color: var(--foreground);
}

@keyframes toastSlideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes toastSlideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

.toast.removing {
  animation: toastSlideOut 0.3s ease-in forwards;
}

@media (max-width: 768px) {
  .toast-container {
    right: 1rem;
    left: 1rem;
  }
  
  .toast {
    min-width: auto;
    max-width: none;
  }
}


/* ==================== 导出成功弹窗 ==================== */
.success-modal .modal-backdrop {
  background: rgba(0, 0, 0, 0.4);
}

.success-dialog {
  width: min(420px, 90vw);
  max-height: none;
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.success-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: bold;
  box-shadow: 0 8px 16px -4px rgba(16, 185, 129, 0.3);
  animation: successPop 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes successPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-message h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
}

.success-message p {
  margin: 0.5rem 0 0;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

.success-dialog button {
  margin-top: 0.5rem;
  min-width: 120px;
}
