/* 大气简约风样式 */
:root {
  --primary: #4f46e5;
  --primary-light: #818cf8;
  --primary-dark: #3730a3;
  --primary-bg: rgba(79, 70, 229, 0.04);
  --success: #10b981;
  --success-bg: rgba(16, 185, 129, 0.1);
  --error: #ef4444;
  --error-bg: rgba(239, 68, 68, 0.1);
  --warning: #f59e0b;
  --warning-bg: rgba(245, 158, 11, 0.1);
  --bg: #f8fafc;
  --bg-gradient: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
  --card: #ffffff;
  --text: #0f172a;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-gradient);
  color: var(--text);
  min-height: 100vh;
  padding: 3rem 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.app {
  max-width: 780px;
  margin: 0 auto;
}

/* 语言切换 */
.lang-switch {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.lang-switch button {
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}

.lang-switch button:hover {
  border-color: var(--primary-light);
  color: var(--primary);
}

.lang-switch button.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
}

/* 头部 */
.header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.header-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--primary-bg);
  color: var(--primary);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-weight: 300;
}

/* Tab 切换 */
.tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  background: var(--card);
  padding: 0.4rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tab {
  flex: 1;
  padding: 0.9rem 1rem;
  border: none;
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.tab-icon {
  font-size: 1.1rem;
}

.tab.active {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.35);
}

.tab:hover:not(.active) {
  background: var(--primary-bg);
  color: var(--primary);
}

/* Tab 内容 */
.tab-content {
  display: none;
  animation: fadeInUp 0.4s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 表单 */
form {
  background: var(--card);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--card);
  transition: var(--transition);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* 团队卡片 */
.team-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.team-card {
  padding: 1.5rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  background: var(--card);
}

.team-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.team-card.selected {
  border-color: var(--primary);
  background: var(--primary-bg);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.team-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 0.75rem;
  border-radius: 8px;
}

.team-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.team-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.team-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* 文件上传 */
.file-upload {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-secondary);
}

.file-upload:hover {
  border-color: var(--primary);
  background: var(--primary-bg);
}

.file-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* 评分 */
.rating-group {
  display: flex;
  gap: 0.5rem;
  font-size: 2rem;
  color: var(--border);
  cursor: pointer;
}

.rating-star {
  transition: var(--transition);
  user-select: none;
}

.rating-star:hover,
.rating-star.active {
  color: #fbbf24;
  transform: scale(1.15);
}

.rating-text {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* 标签 */
.tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag {
  padding: 0.5rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}

.tag:hover {
  border-color: var(--primary-light);
  color: var(--primary);
}

.tag.selected {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* 复选框 */
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  cursor: pointer;
}

/* 隐私同意 */
.consent-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.consent-check {
  padding: 1rem 1.25rem;
  background: var(--primary-bg);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(79, 70, 229, 0.15);
}

.consent-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.consent-link {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 500;
}

.consent-link:hover {
  color: var(--primary-dark);
}

/* 政策链接 */
.policy-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.policy-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--bg);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: var(--transition);
}

.policy-link:hover {
  background: var(--primary-bg);
  color: var(--primary);
}

.policy-link span:first-child {
  font-size: 1.25rem;
}

/* 提交按钮 */
.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(79, 70, 229, 0.4);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* 结果卡片 */
.result-card {
  background: var(--card);
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.result-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.result-icon svg {
  width: 40px;
  height: 40px;
}

.result-icon.success {
  background: var(--success-bg);
  color: var(--success);
}

.result-icon.error {
  background: var(--error-bg);
  color: var(--error);
}

.result-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.result-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.ticket-info {
  background: var(--bg);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: left;
  margin-bottom: 1.5rem;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.info-row:not(:last-child) {
  border-bottom: 1px solid var(--border-light);
}

.info-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.info-value {
  font-weight: 600;
  color: var(--text);
  font-family: monospace;
}

.info-value.token {
  font-size: 0.85rem;
  word-break: break-all;
  max-width: 60%;
  text-align: right;
}

.btn-primary {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  padding: 0.8rem 1.8rem;
  background: var(--bg);
  color: var(--primary);
  border: 1.5px solid var(--primary);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
}

.btn-danger {
  padding: 0.8rem 1.8rem;
  background: var(--error);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.btn-danger:hover {
  background: #dc2626;
}

/* 评分汇总 */
.rating-summary {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1.5rem 0;
  padding: 1rem;
  background: var(--bg);
  border-radius: var(--radius);
}

.rating-item {
  text-align: center;
}

.rating-item .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.rating-item .stars {
  color: #fbbf24;
  font-size: 1.2rem;
}

/* 查询区域 */
.query-box {
  background: var(--card);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  margin-bottom: 2rem;
}

.query-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.query-box label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.query-input-group {
  display: flex;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
}

.query-input-group input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: var(--transition);
}

.query-input-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.08);
}

.btn-query {
  padding: 0.9rem 1.8rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-query:hover {
  background: var(--primary-dark);
}

.query-hint {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* 工单详情 */
.ticket-detail {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 1rem;
}

.ticket-header h3 {
  font-size: 1.3rem;
  color: var(--text);
  font-weight: 600;
}

.status-badge {
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.status-pending {
  background: var(--warning-bg);
  color: var(--warning);
}

.status-processing {
  background: var(--primary-bg);
  color: var(--primary);
}

.status-resolved {
  background: var(--success-bg);
  color: var(--success);
}

.status-closed {
  background: var(--bg);
  color: var(--text-muted);
}

.ticket-meta {
  display: flex;
  gap: 2rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
}

.ticket-content {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  white-space: pre-wrap;
}

.ticket-replies {
  border-top: 1px solid var(--border-light);
  padding-top: 1.25rem;
}

.ticket-replies h4 {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--text-secondary);
}

.reply-item {
  padding: 1.25rem;
  background: var(--bg);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  border-left: 3px solid var(--primary);
}

.reply-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}

.reply-author {
  font-weight: 600;
  color: var(--text);
}

.reply-date {
  color: var(--text-muted);
}

.reply-content {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* 隐私中心 */
.privacy-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.privacy-header {
  padding: 2.5rem;
  text-align: center;
  background: var(--primary-bg);
  border-bottom: 1px solid var(--border-light);
}

.privacy-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.privacy-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.privacy-header p {
  color: var(--text-secondary);
}

.privacy-section {
  padding: 2rem 2.5rem;
  border-bottom: 1px solid var(--border-light);
}

.privacy-section:last-child {
  border-bottom: none;
}

.privacy-section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.privacy-section > p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.rights-list {
  display: grid;
  gap: 1rem;
}

.right-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg);
  border-radius: var(--radius-sm);
}

.right-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.right-content {
  display: flex;
  flex-direction: column;
}

.right-content strong {
  font-size: 0.95rem;
  color: var(--text);
}

.right-content span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.consent-form {
  display: flex;
  gap: 0.75rem;
}

.consent-form input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}

.consent-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.08);
}

/* 同意记录列表 */
.consent-list {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.consent-list h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.consent-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: var(--bg);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}

.consent-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.consent-token {
  font-family: monospace;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.consent-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.consent-status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.status-active {
  padding: 0.3rem 0.8rem;
  background: var(--success-bg);
  color: var(--success);
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.btn-withdraw {
  padding: 0.5rem 1rem;
  background: var(--error-bg);
  color: var(--error);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.btn-withdraw:hover {
  background: var(--error);
  color: white;
}

/* 弹窗 */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  animation: modalIn 0.3s ease;
}

.modal-sm {
  max-width: 450px;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-light);
}

.modal-header h2 {
  font-size: 1.25rem;
  font-weight: 600;
}

.modal-close {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--bg);
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--error-bg);
  color: var(--error);
}

.modal-body {
  padding: 2rem;
  overflow-y: auto;
  flex: 1;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border-light);
}

/* 隐私政策内容 */
.policy-content {
  line-height: 1.8;
  color: var(--text-secondary);
}

.policy-content h3 {
  font-size: 1.1rem;
  color: var(--text);
  margin: 1.5rem 0 0.75rem;
}

.policy-content h3:first-child {
  margin-top: 0;
}

.policy-content p {
  margin-bottom: 0.75rem;
}

.policy-content ul {
  margin-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-content li {
  margin-bottom: 0.4rem;
}

/* 警告框 */
.warning-box {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--warning-bg);
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}

.warning-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.warning-box p {
  font-size: 0.9rem;
  color: #92400e;
  line-height: 1.6;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 1rem 1.8rem;
  background: var(--text);
  color: white;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 3000;
  box-shadow: var(--shadow-xl);
  animation: toastIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast.error {
  background: var(--error);
}

.toast.success {
  background: var(--success);
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* 工具类 */
.hidden {
  display: none !important;
}

/* 响应式 */
@media (max-width: 640px) {
  body {
    padding: 1.5rem 0.75rem;
  }
  
  .form-row,
  .team-cards {
    grid-template-columns: 1fr;
  }
  
  .header h1 {
    font-size: 1.8rem;
  }
  
  form {
    padding: 1.5rem;
  }
  
  .ticket-header {
    flex-direction: column;
  }
  
  .query-input-group {
    flex-direction: column;
  }
  
  .rating-summary {
    flex-direction: column;
    gap: 1rem;
  }
  
  .tab {
    font-size: 0.85rem;
    padding: 0.7rem 0.5rem;
  }
  
  .tab-icon {
    display: none;
  }
  
  .privacy-section {
    padding: 1.5rem;
  }
  
  .consent-form {
    flex-direction: column;
  }
  
  .consent-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .modal-content {
    max-height: 90vh;
  }
  
  .modal-header,
  .modal-body,
  .modal-footer {
    padding: 1rem 1.25rem;
  }
}