/* ==================== EmuAIO Web 样式 ==================== */

:root {
    --bg-primary: #f5f5f5;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-muted: #999999;
    --border-color: #e0e0e0;
    --accent: #1565C0;
    --accent-hover: #1976D2;
    --accent-light: #E3F2FD;
    --error: #D32F2F;
    --error-bg: #FFEBEE;
    --success: #388E3C;
    --warning: #F57C00;
    --warning-bg: #FFF3E0;
    --surface-hover: #f0f0f0;
    --nav-bg: #ffffff;
    --nav-active: #1565C0;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --chip-bg: #E3F2FD;
    --chip-hover: #BBDEFB;
    --gallery-border: #e0e0e0;
}

body.dark {
    --bg-primary: #121212;
    --bg-secondary: #1e1e1e;
    --bg-card: #2a2a2a;
    --text-primary: #e0e0e0;
    --text-secondary: #aaaaaa;
    --text-muted: #777777;
    --border-color: #333333;
    --accent: #90CAF9;
    --accent-hover: #64B5F6;
    --accent-light: #0D1B2A;
    --error: #EF5350;
    --error-bg: #330E0E;
    --warning-bg: #332200;
    --surface-hover: #333333;
    --nav-bg: #1a1a1a;
    --nav-active: #90CAF9;
    --shadow: 0 2px 8px rgba(0,0,0,0.4);
    --chip-bg: #1E3A5F;
    --chip-hover: #254A7A;
    --gallery-border: #333333;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

.app-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 16px 16px 80px 16px;
    min-height: 100vh;
}

/* ==================== 导航栏 ==================== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--nav-bg);
    display: flex;
    justify-content: space-around;
    border-top: 1px solid var(--border-color);
    z-index: 100;
    padding: 8px 0;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
}

.nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: var(--text-muted);
    transition: color 0.2s;
    border-radius: 8px;
}

.nav-btn:hover {
    color: var(--text-secondary);
}

.nav-btn.active {
    color: var(--nav-active);
}

.nav-icon {
    font-size: 20px;
}

.nav-label {
    font-size: 11px;
}

/* ==================== 页面内容 ==================== */
.tab-content {
    display: none;
}

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

.page-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    margin-bottom: 16px;
}

.page-header h1 {
    font-size: 22px;
    font-weight: 700;
}

.version-badge {
    background: var(--accent);
    color: #fff;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

/* ==================== 搜索栏 ==================== */
.search-type-toggle {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    background: var(--bg-card);
    padding: 6px;
    border-radius: 12px;
}

.toggle-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: transparent;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.toggle-btn.active {
    background: var(--accent);
    color: #fff;
}

.search-bar {
    margin-bottom: 12px;
}

.search-row {
    display: flex;
    gap: 8px;
}

.prefix-select {
    width: 56px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    padding: 0 8px;
    text-align: center;
}

.search-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s;
}

.search-input:focus {
    border-color: var(--accent);
}

.search-input.full {
    width: 100%;
}

.search-btn {
    padding: 12px 24px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.search-btn:hover {
    background: var(--accent-hover);
}

.search-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ==================== 选项 ==================== */
.search-option {
    margin-bottom: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
}

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

/* ==================== 路局快捷标签 ==================== */
.bureau-chips {
    margin-bottom: 16px;
}

.chips-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    padding: 6px 14px;
    background: var(--chip-bg);
    color: var(--accent);
    border-radius: 16px;
    font-size: 13px;
    cursor: pointer;
    border: none;
    transition: background 0.2s;
}

.chip:hover {
    background: var(--chip-hover);
}

/* ==================== 错误提示 ==================== */
.error-card {
    background: var(--error-bg);
    color: var(--error);
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    border: 1px solid var(--error);
}

.error-card .close-btn {
    margin-left: auto;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--error);
    font-size: 18px;
}

/* ==================== 加载 ==================== */
.loading-spinner {
    display: flex;
    justify-content: center;
    padding: 40px;
}

.loading-spinner::after {
    content: '';
    width: 36px;
    height: 36px;
    border: 3px solid var(--border-color);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ==================== 结果头部 ==================== */
.results-header {
    background: var(--accent-light);
    padding: 10px 16px;
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ==================== 分页 ==================== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
}

.pagination button {
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-card);
    color: var(--text-primary);
    cursor: pointer;
    font-size: 14px;
}

.pagination button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination .page-input {
    width: 60px;
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 14px;
}

.pagination .page-info {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ==================== 结果卡片 ==================== */
.results-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.result-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.result-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.train-icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: contain;
    background: var(--bg-primary);
}

.train-icon-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-muted);
}

.train-title {
    flex: 1;
}

.train-name {
    font-size: 18px;
    font-weight: 700;
}

.train-bureau-sub {
    font-size: 12px;
    color: var(--text-muted);
}

.train-badges {
    display: flex;
    gap: 6px;
    margin-top: 4px;
}

.badge {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 10px;
    font-style: italic;
}

.badge-coupled {
    background: var(--accent-light);
    color: var(--accent);
}

.badge-ambiguous {
    background: var(--error-bg);
    color: var(--error);
}

.bureau-icon {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    object-fit: contain;
}

.score-bar {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.score-track {
    flex: 1;
    height: 6px;
    background: var(--bg-primary);
    border-radius: 3px;
    overflow: hidden;
}

.score-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.3s;
}

.score-fill.high { background: #4CAF50; }
.score-fill.medium { background: #FF9800; }
.score-fill.low { background: #F44336; }

.score-text {
    font-size: 12px;
    font-weight: 700;
}

.rank-badge {
    padding: 2px 8px;
    border-radius: 4px;
    background: var(--accent-light);
    font-size: 10px;
    color: var(--accent);
    font-weight: 700;
}

.result-card-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-row {
    display: flex;
    gap: 8px;
    font-size: 14px;
}

.info-label {
    min-width: 80px;
    font-weight: 500;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.info-value {
    color: var(--text-primary);
}

.route-info {
    margin-top: 8px;
    padding: 8px 12px;
    background: var(--accent-light);
    border-radius: 6px;
    font-size: 14px;
    color: var(--text-secondary);
    white-space: pre-line;
}

.query-time {
    margin-top: 8px;
    font-size: 12px;
    color: var(--text-muted);
}

/* ==================== 空状态 ==================== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    font-size: 64px;
    margin-bottom: 16px;
    opacity: 0.6;
}

.empty-text {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.empty-hint {
    font-size: 14px;
    color: var(--text-muted);
}

/* ==================== 图鉴 ==================== */
.gallery-tabs {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    padding: 4px 0 12px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 16px;
    -webkit-overflow-scrolling: touch;
}

.gallery-tab-btn {
    padding: 10px 16px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.gallery-tab-btn:hover {
    color: var(--text-secondary);
}

.gallery-tab-btn.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.gallery-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gallery-item {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid var(--gallery-border);
}

.gallery-footer {
    padding: 16px 0 32px;
    text-align: center;
}

.gallery-footer .btn-primary {
    display: inline-block;
    padding: 12px 32px;
    background: var(--accent);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

/* ==================== 关于 ==================== */
.about-content {
    padding: 8px 0;
}

.about-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.announcement-card {
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
    border: 1px solid var(--accent);
}

.announcement-card.info {
    background: var(--accent-light);
}

.announcement-card.warning {
    background: var(--warning-bg);
    border-color: var(--warning);
}

.announcement-inner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.announcement-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.announcement-text {
    white-space: pre-line;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-primary);
}

.about-content h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.data-source-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.data-source-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.ds-icon {
    font-size: 20px;
}

.ds-name {
    font-size: 15px;
    font-weight: 500;
}

.ds-desc {
    font-size: 13px;
    color: var(--text-muted);
}

.copyright-card {
    padding: 16px;
    background: var(--error-bg);
    border-radius: 12px;
    border: 1px solid var(--error);
}

.copyright-card h3 {
    color: var(--error);
    font-size: 16px;
    margin-bottom: 12px;
}

.copyright-card p {
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1.5;
}

.copyright-card a {
    color: var(--accent);
    text-decoration: underline;
}

.copyright-sub {
    font-size: 13px !important;
    color: var(--text-muted) !important;
}

/* ==================== 设置 ==================== */
.settings-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.settings-section {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid var(--border-color);
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.setting-item:last-child {
    border-bottom: none;
}

.setting-info {
    flex: 1;
}

.setting-label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 2px;
}

.setting-desc {
    font-size: 13px;
    color: var(--text-muted);
}

.setting-select {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 14px;
    outline: none;
}

/* 主题选项 */
.theme-options {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.theme-option {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-muted);
    background: var(--bg-primary);
    transition: all 0.2s;
}

.theme-option input[type="radio"] {
    display: none;
}

.theme-option:has(input:checked) {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(21, 101, 192, 0.08);
}

body.dark .theme-option:has(input:checked) {
    background: rgba(144, 202, 249, 0.12);
}

/* ==================== 开关 ==================== */
.switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 28px;
    flex-shrink: 0;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 28px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--accent);
}

input:checked + .slider:before {
    transform: translateX(20px);
}

/* ==================== 按钮 ==================== */
.btn-outline {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 14px;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
}

.btn-outline:hover {
    background: var(--surface-hover);
}

.btn-danger {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--error);
    border-radius: 8px;
    background: transparent;
    color: var(--error);
    font-size: 14px;
    cursor: pointer;
}

.btn-danger:hover {
    background: var(--error-bg);
}

/* ==================== 分享弹窗 ==================== */
.share-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.share-modal {
    background: var(--bg-card);
    border-radius: 16px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.share-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 12px;
}

.share-modal-header h2 {
    font-size: 18px;
    font-weight: 600;
}

.share-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
}

.share-modal-close:hover {
    color: var(--text-primary);
}

.share-modal-body {
    padding: 8px 20px 24px;
}

.share-expiry-options {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.share-expiry-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.share-expiry-option:hover {
    border-color: var(--accent);
}

.share-expiry-option:has(input:checked) {
    border-color: var(--accent);
    background: var(--accent-light);
}

.share-expiry-option input[type="radio"] {
    accent-color: var(--accent);
    width: 18px;
    height: 18px;
}

.share-expiry-label {
    font-size: 15px;
    color: var(--text-primary);
}

/* 分享创建按钮 */
.share-create-btn {
    width: 100%;
    padding: 12px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.share-create-btn:hover {
    background: var(--accent-hover);
}

.share-create-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* 分享结果 */
.share-result {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.share-url-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.share-url-row {
    display: flex;
    gap: 8px;
}

.share-url-input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 13px;
    font-family: monospace;
}

.share-copy-btn {
    padding: 10px 20px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.share-copy-btn:hover {
    background: var(--accent-hover);
}

.share-copy-hint {
    margin-top: 8px;
    font-size: 13px;
    color: var(--success);
}

/* ==================== 分享条/按钮 ==================== */
.share-bar {
    text-align: right;
    margin-bottom: 12px;
}

.share-btn {
    padding: 8px 18px;
    background: var(--bg-card);
    border: 1px solid var(--accent);
    border-radius: 8px;
    color: var(--accent);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.share-btn:hover {
    background: var(--accent-light);
}

/* ==================== 分享查看页 ==================== */
.share-view {
    padding: 16px 0;
}

.share-view-banner {
    background: var(--accent-light);
    border: 1px solid var(--accent);
    padding: 10px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-view-query {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.share-view-footer {
    padding: 24px 0 32px;
    text-align: center;
}

.share-view-footer .btn-primary {
    display: inline-block;
    padding: 12px 32px;
    background: var(--accent);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.share-view-error {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.share-view-error p {
    margin-bottom: 8px;
}

.version-info {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==================== 交路查询结果 ==================== */
.railre-info-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0 10px;
    font-size: 11px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 8px;
}

.route-table-wrap {
    overflow-x: auto;
    margin-top: 8px;
}

.route-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.route-table th {
    text-align: left;
    padding: 8px 10px;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-primary);
    position: sticky;
    top: 0;
}

.route-table td {
    padding: 8px 10px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}

.route-table tbody tr:hover {
    background: var(--bg-hover);
}

.route-table tbody tr:last-child td {
    border-bottom: none;
}

.route-date {
    color: var(--text-muted) !important;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
    width: 100px;
}

.route-emu {
    font-weight: 500;
    font-family: 'SF Mono', 'Cascadia Code', 'Fira Code', monospace;
    letter-spacing: 0.3px;
}

.route-bureau {
    color: var(--text-secondary) !important;
}

/* ==================== 通用 ==================== */
.hidden {
    display: none !important;
}

/* ==================== 客车卡片样式 ==================== */
.coach-model-tag {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, #64B5F6 0%, #1976D2 100%);
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    margin-bottom: 8px;
}

.coach-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 6px;
}

.coach-depot {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}