/* ============================================================
   PrinxAi - 现代化自适应全屏综合信息看板
   ============================================================ */

:root {
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  /* 暗黑主题变量 (默认) */
  --bg-main: #0d1117;
  --bg-card: rgba(22, 27, 34, 0.82);
  --bg-card-hover: rgba(33, 38, 45, 0.95);
  --bg-header: rgba(13, 17, 23, 0.9);
  --bg-input: #161b22;
  --border-color: rgba(240, 246, 252, 0.1);
  --border-color-hover: rgba(240, 246, 252, 0.22);
  
  --text-main: #f0f6fc;
  --text-muted: #8b949e;
  --text-dim: #6e7681;

  --accent-blue: #58a6ff;
  --accent-blue-bg: rgba(56, 139, 253, 0.15);
  --accent-orange: #f0883e;
  --accent-green: #3fb950;
  --accent-purple: #bc8cff;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 6px 16px rgba(0, 0, 0, 0.45);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
}

/* 明亮主题变量 */
body.theme-light {
  --bg-main: #f6f8fa;
  --bg-card: rgba(255, 255, 255, 0.92);
  --bg-card-hover: #ffffff;
  --bg-header: rgba(246, 248, 250, 0.92);
  --bg-input: #ffffff;
  --border-color: rgba(31, 35, 40, 0.12);
  --border-color-hover: rgba(31, 35, 40, 0.24);

  --text-main: #1f2328;
  --text-muted: #656d76;
  --text-dim: #8c959f;

  --accent-blue: #0969da;
  --accent-blue-bg: rgba(9, 105, 218, 0.1);
  --accent-orange: #bc4c00;
  --accent-green: #1a7f37;
  --accent-purple: #8250df;

  --shadow-sm: 0 1px 3px rgba(31, 35, 40, 0.08);
  --shadow-md: 0 6px 16px rgba(31, 35, 40, 0.12);
}

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

html, body {
  width: 100vw;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.2s ease, color 0.2s ease;
}

a {
  color: inherit;
  text-decoration: none;
}

/* 自定义纤细滚动条 */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--border-color-hover);
}

/* ============================================================
   顶部导航栏 (全宽通栏)
   ============================================================ */
.app-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.6rem 1.25rem;
  background-color: var(--bg-header);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  gap: 1rem;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  user-select: none;
  cursor: pointer;
}

.brand-icon {
  font-size: 1.45rem;
  line-height: 1;
}

.brand-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--text-main) 60%, var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-subtitle {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: block;
}

/* 视图切换按钮组 */
.view-switcher {
  display: flex;
  background-color: var(--border-color);
  padding: 2px;
  border-radius: var(--radius-md);
  gap: 2px;
}

.view-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.65rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.15s ease;
}

.view-btn:hover {
  color: var(--text-main);
}

.view-btn.active {
  background-color: var(--bg-card);
  color: var(--accent-blue);
  box-shadow: var(--shadow-sm);
}

/* 顶部搜索框 */
.header-center {
  flex: 1;
  max-width: 440px;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.search-icon {
  position: absolute;
  left: 0.7rem;
  color: var(--text-dim);
  pointer-events: none;
}

.search-box input {
  width: 100%;
  padding: 0.4rem 1.8rem 0.4rem 2rem;
  font-size: 0.82rem;
  background-color: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: 9999px;
  color: var(--text-main);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-box input:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px var(--accent-blue-bg);
}

.search-clear-btn {
  position: absolute;
  right: 0.6rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
}

/* 顶部右侧 */
.header-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.header-action-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.32rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-main);
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.header-action-btn:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}

.refresh-indicator {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.32rem 0.65rem;
  font-size: 0.76rem;
  color: var(--text-muted);
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 9999px;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
}

.refresh-indicator:hover {
  color: var(--text-main);
  border-color: var(--border-color-hover);
}

.spinner-ring {
  width: 9px;
  height: 9px;
  border: 2px solid var(--border-color-hover);
  border-top-color: var(--accent-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-card);
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}

.icon-btn:hover {
  color: var(--text-main);
  border-color: var(--border-color-hover);
}

/* ============================================================
   二级工具栏 (全宽通栏)
   ============================================================ */
.sub-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.4rem 1.25rem;
  background-color: var(--bg-main);
  border-bottom: 1px solid var(--border-color);
  gap: 1rem;
}

.sub-nav-left, .sub-nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.sub-nav-left::-webkit-scrollbar, .sub-nav-right::-webkit-scrollbar {
  display: none;
}

.nav-label {
  font-size: 0.72rem;
  color: var(--text-dim);
  white-space: nowrap;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.category-pills, .channel-pills {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.pill-btn {
  padding: 0.2rem 0.55rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid var(--border-color);
  background-color: var(--bg-card);
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease;
}

.pill-btn:hover {
  color: var(--text-main);
  border-color: var(--border-color-hover);
}

.pill-btn.active {
  background-color: var(--accent-blue-bg);
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  font-weight: 600;
}

.ad-filter-badge {
  font-size: 0.72rem;
  padding: 0.2rem 0.55rem;
  border-radius: 9999px;
  background-color: rgba(63, 185, 80, 0.12);
  color: var(--accent-green);
  border: 1px solid rgba(63, 185, 80, 0.25);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* ============================================================
   主内容区布局 (自适应满屏 100% Viewport)
   ============================================================ */
.main-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0.75rem 1.25rem;
  box-sizing: border-box;
}

/* 双栏模式 (Split View: 左侧热榜，右侧电报) */
.main-container.view-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 1.25rem;
  height: calc(100vh - 98px);
  align-items: stretch;
}

@media (min-width: 1680px) {
  .main-container.view-split {
    grid-template-columns: minmax(0, 1fr) 520px;
    gap: 1.5rem;
  }
}

/* 全屏热榜模式 */
.main-container.view-news {
  display: block;
  min-height: calc(100vh - 98px);
}
.main-container.view-news .pane-tg {
  display: none !important;
}

/* 全屏频道模式 */
.main-container.view-tg {
  display: block;
  min-height: calc(100vh - 98px);
}
.main-container.view-tg .pane-news {
  display: none !important;
}
.main-container.view-tg .pane-tg {
  max-width: 860px;
  margin: 0 auto;
}

/* 板块容器与独立平滑滚动 */
.pane {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
  min-height: 0;
}

.pane-header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border-color);
}

.pane-title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.pane-title h2 {
  font-size: 1rem;
  font-weight: 700;
}

.pane-icon {
  font-size: 1.15rem;
}

.pane-badge {
  font-size: 0.7rem;
  padding: 0.12rem 0.45rem;
  border-radius: 9999px;
  background-color: var(--border-color);
  color: var(--text-muted);
}

.last-updated {
  font-size: 0.7rem;
  color: var(--text-dim);
}

/* ============================================================
   新闻源原生卡片网格 (满屏自适应列宽)
   ============================================================ */
.news-grid {
  flex: 1;
  overflow-y: auto;
  padding-right: 4px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 0.85rem;
  align-content: start;
}

.news-card {
  background-color: var(--bg-card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.85rem 0.95rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.news-card:hover {
  border-color: var(--border-color-hover);
  box-shadow: var(--shadow-md);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px dashed var(--border-color);
}

.card-title-group {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.card-icon {
  font-size: 1.05rem;
}

.card-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
}

.card-category-tag {
  font-size: 0.65rem;
  padding: 0.08rem 0.3rem;
  border-radius: 4px;
  background-color: var(--border-color);
  color: var(--text-muted);
}

.card-refresh-btn {
  background: none;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  padding: 2px;
  font-size: 0.8rem;
}
.card-refresh-btn:hover {
  color: var(--text-main);
}

/* 资讯列表 */
.news-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.news-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  line-height: 1.4;
}

.news-rank {
  flex-shrink: 0;
  width: 19px;
  height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 3px;
  background-color: var(--border-color);
  color: var(--text-muted);
}

.news-item:nth-child(1) .news-rank {
  background: linear-gradient(135deg, #ff4757, #ff6b81);
  color: #fff;
}
.news-item:nth-child(2) .news-rank {
  background: linear-gradient(135deg, #ffa502, #eccc68);
  color: #fff;
}
.news-item:nth-child(3) .news-rank {
  background: linear-gradient(135deg, #2ed573, #7bed9f);
  color: #fff;
}

.news-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.news-link {
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.15s ease;
}

.news-link:hover {
  color: var(--accent-blue);
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  color: var(--text-dim);
  margin-top: 1px;
}

.news-tag {
  color: var(--accent-orange);
  font-weight: 600;
}

/* ============================================================
   Telegram 频道时间线流 (右栏自适应独立滚动)
   ============================================================ */
.timeline-stream {
  flex: 1;
  overflow-y: auto;
  padding-right: 4px;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.channel-banner {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 0.25rem;
}

.channel-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--border-color);
}

.channel-details {
  flex: 1;
  min-width: 0;
}

.channel-title-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.channel-title-row h3 {
  font-size: 0.95rem;
  font-weight: 700;
}

.channel-handle {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-blue);
}

.channel-subscribers {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.channel-bio {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.tg-card {
  background-color: var(--bg-card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.95rem 1rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.tg-card:hover {
  border-color: var(--border-color-hover);
  box-shadow: var(--shadow-md);
}

.tg-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tg-author {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.tg-author-info {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.tg-author-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-blue);
  font-family: var(--font-mono);
}

.tg-channel-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.tg-date {
  font-size: 0.72rem;
  color: var(--text-dim);
}

.tg-forwarded {
  font-size: 0.72rem;
  color: var(--text-muted);
  padding: 0.15rem 0.45rem;
  background-color: var(--border-color);
  border-left: 3px solid var(--accent-blue);
  border-radius: 2px;
}

.tg-text {
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--text-main);
  word-break: break-word;
}

.tg-text a {
  color: var(--accent-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.tg-media-grid {
  display: grid;
  gap: 0.35rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.tg-media-grid.grid-1 {
  grid-template-columns: 1fr;
}
.tg-media-grid.grid-2 {
  grid-template-columns: 1fr 1fr;
}
.tg-media-grid.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.tg-media-grid.grid-4 {
  grid-template-columns: 1fr 1fr;
}

.tg-media-item {
  position: relative;
  width: 100%;
  padding-bottom: 66%;
  background-color: var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  cursor: zoom-in;
}

.tg-media-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.tg-media-item:hover img {
  transform: scale(1.03);
}

.tg-link-preview {
  display: flex;
  flex-direction: column;
  border-left: 3px solid var(--accent-blue);
  background-color: var(--bg-card-hover);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 0.55rem 0.75rem;
  gap: 0.2rem;
  font-size: 0.78rem;
}

.preview-site {
  font-size: 0.68rem;
  color: var(--text-dim);
  font-weight: 600;
}

.preview-title {
  font-weight: 700;
  color: var(--accent-blue);
}

.preview-desc {
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.45rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.72rem;
  color: var(--text-dim);
}

.tg-views {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.tg-action-link {
  color: var(--text-muted);
  transition: color 0.15s ease;
}

.tg-action-link:hover {
  color: var(--accent-blue);
}

/* ============================================================
   自定义新闻源选择器模态框
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.source-modal-card {
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-md);
  animation: modalIn 0.2s ease-out;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.85rem;
}

.modal-title-group h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

.modal-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}

.modal-toolbar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}

.source-list-grid {
  flex: 1;
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
  gap: 0.6rem;
  padding-right: 4px;
}

.source-item-check {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  cursor: pointer;
  user-select: none;
  transition: all 0.15s ease;
}

.source-item-check:hover {
  border-color: var(--border-color-hover);
}

.source-item-check.checked {
  background-color: var(--accent-blue-bg);
  border-color: var(--accent-blue);
}

.source-item-check input[type="checkbox"] {
  accent-color: var(--accent-blue);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.source-check-label {
  display: flex;
  flex-direction: column;
}

.source-check-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.source-check-category {
  font-size: 0.68rem;
  color: var(--text-dim);
}

.modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-color);
}

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

.btn {
  padding: 0.45rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.15s ease;
}

.btn-sm {
  padding: 0.25rem 0.6rem;
  font-size: 0.74rem;
}

.btn-secondary {
  background-color: var(--border-color);
  color: var(--text-main);
}
.btn-secondary:hover {
  background-color: var(--border-color-hover);
}

.btn-primary {
  background-color: var(--accent-blue);
  color: #fff;
}
.btn-primary:hover {
  opacity: 0.9;
}

/* ============================================================
   大图灯箱
   ============================================================ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
}

.lightbox-content img {
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
}

/* ============================================================
   响应式折叠 (窄屏设备)
   ============================================================ */
@media (max-width: 1080px) {
  .main-container.view-split {
    grid-template-columns: 1fr;
    height: auto;
  }
  .pane {
    height: auto;
  }
  .app-header {
    flex-wrap: wrap;
  }
  .header-center {
    order: 3;
    max-width: 100%;
    width: 100%;
    margin-top: 0.4rem;
  }
}
