/* ========== NPSERVER 网页端 — 与安卓APP风格一致 + 动效增强 ========== */

:root {
  --page-bg: #101820;
  --card-bg: #FAFAF9;
  --field-bg: #F6F7F8;
  --primary-blue: #2563EB;
  --primary-blue-hover: #1D4ED8;
  --text-strong: #1F2937;
  --text-muted: #8B95A1;
  --border-color: #E5E7EB;
  --success-green: #04D820;
  --error-red: #EF4444;
  --white: #FFFFFF;
  --toast-success-bg: rgba(4,216,32,0.92);
  --toast-error-bg: rgba(239,68,68,0.92);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

button, [onclick], .choice-chip {
  outline: none;
}

button:focus, [onclick]:focus, .choice-chip:focus {
  outline: none;
}

html, body {
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Microsoft YaHei', sans-serif;
  background: var(--page-bg);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ========== 页面切换动画 ========== */
#app {
  animation: pageFadeIn 0.35s ease-out;
}

@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ========== 页面容器 ========== */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-content {
  width: 100%;
  max-width: 760px;
  padding: 16px 16px 24px;
}

/* ========== 顶部导航栏 ========== */
.top-bar {
  width: 100%;
  padding: 18px 24px;
  background: var(--page-bg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.top-bar-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
}

.top-bar-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.top-bar-actions button {
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.top-bar-actions button svg,
.settings-btn svg {
  display: block;
}

.top-bar-actions button:hover {
  background: rgba(255,255,255,0.1);
}

.top-bar-actions button:active {
  transform: scale(0.92);
}

.btn-visit {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  background: rgba(37,99,235,0.15);
  color: var(--primary-blue);
  border: 1px solid rgba(37,99,235,0.3);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-visit:hover {
  background: rgba(37,99,235,0.25);
  border-color: var(--primary-blue);
}

.btn-visit:active {
  transform: scale(0.95);
}

/* ========== 卡片 — 入场动画 ========== */
.section-card {
  width: 100%;
  padding: 18px;
  background: var(--card-bg);
  border-radius: 8px;
  box-shadow: 0 10px 18px rgba(0,0,0,0.2);
  margin-bottom: 16px;
  animation: cardSlideIn 0.4s ease-out both;
}

.section-card:nth-child(1) { animation-delay: 0.05s; }
.section-card:nth-child(2) { animation-delay: 0.12s; }
.section-card:nth-child(3) { animation-delay: 0.19s; }
.section-card:nth-child(4) { animation-delay: 0.26s; }
.section-card:nth-child(5) { animation-delay: 0.33s; }
.section-card:nth-child(6) { animation-delay: 0.40s; }

@keyframes cardSlideIn {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.card-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.card-header .card-icon {
  color: var(--primary-blue);
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
}

.card-header .card-icon-svg {
  color: var(--primary-blue);
  flex-shrink: 0;
}

.card-header .card-title {
  color: var(--text-strong);
  font-size: 16px;
  font-weight: 800;
}

.card-header .card-subtitle {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 4px;
  line-height: 1.4;
}

.card-body {
  margin-top: 16px;
}

/* ========== 输入框 ========== */
.input-group {
  width: 100%;
  margin-bottom: 14px;
}

.input-group label {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 600;
}

.input-group input,
.input-group textarea,
.input-group select {
  width: 100%;
  padding: 12px 14px;
  background: var(--field-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-strong);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

.input-group textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}

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

/* ========== 按钮 ========== */
.btn-primary {
  width: 100%;
  min-height: 54px;
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.35s ease, transform 0.15s, box-shadow 0.35s ease, filter 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(37,99,235,0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #4f94f7 0%, #2563eb 100%);
  box-shadow: 0 4px 16px rgba(37,99,235,0.35);
}

.btn-primary:active {
  transform: scale(0.97);
}

.btn-primary:disabled {
  background: #333;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-outline {
  width: 100%;
  min-height: 44px;
  background: transparent;
  color: var(--primary-blue);
  border: 1px solid var(--primary-blue);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-outline:hover {
  background: rgba(37,99,235,0.08);
}

.btn-outline:active {
  transform: scale(0.97);
}

.btn-share {
  color: #03D669;
  border-color: #03D669;
}

.btn-share:hover {
  background: rgba(3,214,105,0.08);
}

.btn-sm {
  min-height: 36px;
  padding: 8px 16px;
  font-size: 14px;
  width: auto;
  border-radius: 28px;
}

.btn-danger {
  background: var(--error-red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  padding: 8px 16px;
  transition: background 0.2s, transform 0.15s;
}

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

.btn-danger:active {
  transform: scale(0.97);
}

/* ========== ChoiceChip ========== */
.chip-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.choice-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  color: var(--text-strong);
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  user-select: none;
}

.choice-chip:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 2px 8px rgba(37,99,235,0.2);
}

.choice-chip.selected {
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(37,99,235,0.35);
}

.choice-chip.selected .chip-check {
  display: none;
}

.chip-check {
  display: none;
  font-size: 18px;
}

/* ========== 开关（Switch） ========== */
.switch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  margin-bottom: 8px;
}

.switch-row .switch-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--text-strong);
}

.switch-row .switch-label .switch-icon {
  color: var(--primary-blue);
  font-size: 22px;
}

.toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
  background: #ccc;
  border-radius: 28px;
  cursor: pointer;
  transition: background 0.3s;
}

.toggle-switch.active {
  background: var(--primary-blue);
}

.toggle-switch .toggle-knob {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.toggle-switch.active .toggle-knob {
  transform: translateX(24px);
}

/* ========== Slider ========== */
.slider-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider-row input[type="range"] {
  flex: 1;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: #ddd;
  border-radius: 3px;
  outline: none;
}

.slider-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--primary-blue);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(37,99,235,0.35);
  transition: transform 0.15s;
}

.slider-row input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.slider-value {
  min-width: 54px;
  text-align: center;
  color: var(--primary-blue);
  font-weight: 800;
}

/* ========== 登录/注册页面 ========== */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--page-bg);
  padding: 20px;
}

.auth-container {
  width: 100%;
  max-width: 440px;
  animation: authFadeIn 0.5s ease-out;
}

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

.auth-logo {
  text-align: center;
  margin-bottom: 32px;
}

.auth-logo h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.auth-logo p {
  color: #9CA3AF;
  font-size: 15px;
}

.auth-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-tabs {
  display: flex;
  position: relative;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--border-color);
}

.auth-tab {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.25s;
  position: relative;
}

.auth-tab.active {
  color: var(--primary-blue);
}

.auth-tab-indicator {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50%;
  height: 2px;
  background: var(--primary-blue);
  border-radius: 2px 2px 0 0;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}

.auth-form {
  transition: opacity 0.3s ease;
}

.auth-error {
  background: #FFF1F1;
  color: var(--error-red);
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(239,68,68,0.28);
  font-size: 14px;
  margin-bottom: 14px;
  display: none;
}

.auth-error.show {
  display: block;
  animation: shakeX 0.4s ease;
}

@keyframes shakeX {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

.auth-footer {
  text-align: center;
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 14px;
}

.auth-footer a {
  color: var(--primary-blue);
  cursor: pointer;
  font-weight: 600;
}

/* ========== (Toast样式已移至JS inline) ========== */

/* ========== 结果卡片 — 入场动画 ========== */
.result-card {
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 16px;
  animation: resultSlideIn 0.4s ease-out both;
}

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

.result-card.success {
  background: #EFFBEF;
  border: 1px solid rgba(4,216,32,0.28);
}

.result-card.error {
  background: #FFF1F1;
  border: 1px solid rgba(239,68,68,0.28);
}

.result-card .result-icon {
  font-size: 24px;
}

.result-card .result-title {
  font-weight: 800;
  font-size: 15px;
}

.result-card.success .result-icon,
.result-card.success .result-title {
  color: var(--success-green);
}

.result-card.error .result-icon,
.result-card.error .result-title {
  color: var(--error-red);
}

.result-card .result-details {
  color: var(--text-strong);
  font-size: 14px;
  line-height: 1.35;
  margin-top: 6px;
}

/* ========== 高级选项折叠 ========== */
.advanced-toggle {
  cursor: pointer;
}

.advanced-toggle .toggle-arrow {
  color: var(--primary-blue);
  font-size: 32px;
  transition: transform 0.3s;
}

.advanced-toggle.expanded .toggle-arrow {
  transform: rotate(180deg);
}

.advanced-body {
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
  max-height: 0;
  opacity: 0;
}

.advanced-body.expanded {
  max-height: 500px;
  opacity: 1;
}

/* ========== 设置页面 ========== */
.config-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.config-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  background: var(--field-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: all 0.25s;
}

.config-item:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 2px 8px rgba(37,99,235,0.15);
}

.config-item .config-name {
  font-weight: 700;
  color: var(--text-strong);
}

.config-item .config-info {
  color: var(--text-muted);
  font-size: 13px;
}

.config-item .config-actions {
  display: flex;
  gap: 8px;
}

.config-item .config-actions button {
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 6px;
  cursor: pointer;
}

/* ========== 模态框 ========== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  animation: modalOverlayIn 0.25s ease;
}

@keyframes modalOverlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal-content {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 24px;
  width: 90%;
  max-width: 480px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  animation: modalSlideUp 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

.modal-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-strong);
  margin-bottom: 20px;
}

.modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  justify-content: flex-end;
}

/* ========== 空配置引导 ========== */
.empty-guide {
  text-align: center;
  padding: 40px 20px;
}

.empty-guide .empty-icon {
  font-size: 48px;
  color: var(--primary-blue);
  margin-bottom: 16px;
  animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
  0%   { opacity: 0; transform: scale(0.3); }
  50%  { transform: scale(1.05); }
  70%  { transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}

.empty-guide p {
  color: #9CA3AF;
  font-size: 15px;
  line-height: 1.5;
}

/* ========== 加载动画 ========== */
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-center {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

/* ========== 用户信息栏 ========== */
.user-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  margin-bottom: 12px;
}

.user-bar .user-email {
  color: #9CA3AF;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.user-bar .user-email .user-icon {
  flex-shrink: 0;
}

.user-bar button,
.logout-text-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.user-bar button:hover {
  background: rgba(255,255,255,0.1);
}

/* ========== 密码可见性 ========== */
.password-toggle {
  position: relative;
}

.password-toggle input {
  padding-right: 44px;
}

.password-toggle .toggle-eye {
  position: absolute;
  right: 12px;
  bottom: 14px;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.password-toggle .toggle-eye:hover {
  color: var(--primary-blue);
}

/* ========== 发送按钮脉冲 ========== */
.btn-primary.pulse {
  animation: btnPulse 0.6s ease;
}

@keyframes btnPulse {
  0%   { transform: scale(1); }
  30%  { transform: scale(0.95); }
  60%  { transform: scale(1.03); }
  100% { transform: scale(1); }
}

/* ========== 扫一扫页面 ========== */
.scan-page {
  min-height: 100vh;
  background: var(--page-bg);
  display: flex;
  flex-direction: column;
}

.scan-top-bar {
  width: 100%;
  padding: 18px 24px;
  background: var(--page-bg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.scan-top-bar-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
}

.scan-top-bar button {
  background: transparent;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.scan-top-bar button:hover {
  background: rgba(255,255,255,0.1);
}

.scan-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.scan-viewport {
  width: 100%;
  max-width: 360px;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  margin-bottom: 16px;
}

.scan-viewport video {
  width: 100%;
  display: block;
}

.scan-tip {
  color: #9CA3AF;
  font-size: 15px;
  text-align: center;
  margin-bottom: 16px;
}

.scan-actions {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 360px;
}

#html5-qrcode-anchor {
  width: 100%;
}

/* html5-qrcode 库样式覆盖 */
#html5-qrcode-anchor video {
  border-radius: 12px;
}

.scan-camera-btn {
  text-align: center;
  line-height: 1.4;
}

.scan-file-btn {
  width: 100%;
  max-width: 360px;
  min-height: 44px;
  background: transparent;
  color: var(--primary-blue);
  border: 1px solid var(--primary-blue);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}

.scan-file-btn:hover {
  background: rgba(37,99,235,0.08);
}

/* ========== 响应式 ========== */
@media (max-width: 760px) {
  .page-content {
    padding: 12px 12px 20px;
  }
  .top-bar-title {
    font-size: 22px;
  }
  .toast-container {
    top: 12px;
    width: 95%;
  }
}

/* ========== 分享弹窗（画中画风格） ========== */
.share-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: shareOverlayIn 0.25s ease;
}

@keyframes shareOverlayIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.share-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 28px 24px;
  width: 320px;
  max-width: 90%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  position: relative;
  animation: shareCardIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes shareCardIn {
  from { transform: scale(0.85) translateY(20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.share-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: none;
  background: #f1f5f9;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: background 0.2s, color 0.2s;
}

.share-close:hover {
  background: #e2e8f0;
  color: #1a1a1a;
}

.share-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
}

.share-card-title {
  font-size: 18px;
  font-weight: 800;
  color: #1a1a1a;
}

.share-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.share-class-name {
  font-size: 22px;
  font-weight: 800;
  color: #2563EB;
}

.share-qr-wrap {
  padding: 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.share-qr-wrap img,
.share-qr-wrap canvas {
  display: block;
}

.share-info-card {
  width: 100%;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.share-info-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.share-info-label {
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
  white-space: nowrap;
  flex-shrink: 0;
}

.share-info-value {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  font-family: monospace;
  word-break: break-all;
  overflow-wrap: anywhere;
  min-width: 0;
}

.share-download-btn {
  margin-top: 8px;
}
