/* ==========================================
   粤语学习助手 - 主样式表
   ========================================== */

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

:root {
    --green-50: #e8f5e9;
    --green-100: #c8e6c9;
    --green-200: #a5d6a7;
    --green-300: #81c784;
    --green-400: #66bb6a;
    --green-500: #4caf50;
    --green-600: #43a047;
    --green-700: #2e7d32;
    --green-800: #1b5e20;
    --green-900: #0d3b11;
    --red-400: #ef5350;
    --red-800: #c62828;
    --orange-500: #ff9800;
    --orange-600: #ef6c00;
    --grey-400: #9e9e9e;
    --grey-200: #e0e0e0;
    --beige-bg: #f0f7ea;
    --card-bg: #ffffff;
    --input-bg: #fef9e6;
    --radius-sm: 16px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-xl: 40px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.3);
}

body {
    background: var(--beige-bg);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    padding: 10px;
    color: #2c3e2f;
    margin: 0;
    padding-bottom: 20px;
}

.container {
    max-width: 550px;
    margin: 0 auto;
}

/* ---------- Header ---------- */
.header {
    text-align: center;
    margin-bottom: 12px;
}
.header h1 {
    font-size: 1.4rem;
    background: linear-gradient(135deg, var(--green-700), var(--green-800));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.header p {
    color: #558b2f;
    font-size: 0.7rem;
}

/* ---------- Tabs ---------- */
.main-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 12px;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 8px;
    box-shadow: var(--shadow-sm);
}
.main-tab-btn {
    background: var(--green-50);
    border: none;
    padding: 12px 0;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
    cursor: pointer;
    color: #2e5c2a;
    text-align: center;
    transition: all 0.2s;
}
.main-tab-btn.active {
    background: var(--green-700);
    color: white;
}

.sub-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
    background: #f9fbe7;
    border-radius: var(--radius-lg);
    padding: 6px;
}
.sub-tab-btn {
    background: var(--green-50);
    border: none;
    padding: 6px 12px;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    cursor: pointer;
    color: #2e5c2a;
    flex: 1;
    text-align: center;
}
.sub-tab-btn.active {
    background: var(--green-300);
    color: white;
}

.main-pane { display: none; }
.main-pane.active { display: block; }
.sub-pane { display: none; }
.sub-pane.active {
    display: block;
    animation: fade 0.2s ease;
}
@keyframes fade {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------- Cards ---------- */
.card {
    background: var(--card-bg);
    border-radius: 18px;
    padding: 12px;
    margin-bottom: 14px;
    border: 1px solid var(--green-50);
}
.card-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--green-800);
    border-left: 4px solid var(--green-400);
    padding-left: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ---------- Buttons ---------- */
button {
    background: var(--green-500);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    padding: 10px 14px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.8rem;
    transition: opacity 0.1s;
}
button:active { opacity: 0.7; }
button:disabled { opacity: 0.5; cursor: not-allowed; }
button.secondary { background: #ffb74d; }
button.outline {
    background: transparent;
    border: 1.5px solid var(--green-500);
    color: var(--green-700);
}
button.danger-outline {
    background: transparent;
    border: 1.5px solid var(--red-400);
    color: var(--red-800);
}

/* ---------- Inputs ---------- */
input, textarea, select {
    width: 100%;
    padding: 10px 14px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--green-100);
    background: var(--input-bg);
    font-size: 0.85rem;
    margin: 6px 0;
}

/* ---------- Word List ---------- */
.word-list {
    max-height: 450px;
    overflow-y: auto;
    background: #f9fbe7;
    border-radius: var(--radius-sm);
    padding: 6px;
}
.word-list::-webkit-scrollbar {
    width: 3px;
}
.word-list::-webkit-scrollbar-track {
    background: #e8f5e9;
    border-radius: 3px;
}
.word-list::-webkit-scrollbar-thumb {
    background: var(--green-300);
    border-radius: 3px;
}

.word-item {
    background: white;
    margin: 6px 0;
    padding: 10px 12px;
    border-radius: var(--radius-md);
    border: 1px solid #dcedc8;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.word-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
}
.word-text {
    font-weight: 700;
    font-size: 1rem;
    color: var(--green-800);
    background: var(--green-50);
    padding: 4px 12px;
    border-radius: var(--radius-lg);
    display: inline-block;
}
.jyutping-badge {
    background: #e1f5e8;
    padding: 4px 10px;
    border-radius: var(--radius-lg);
    font-family: monospace;
    font-size: 0.7rem;
    color: var(--green-700);
    font-weight: 500;
}
.word-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-end;
}
.action-btn {
    padding: 5px 10px;
    font-size: 0.7rem;
    margin: 0;
    border-radius: 25px;
}

/* ---------- Status Badges ---------- */
.status-badge {
    font-size: 0.65rem;
    padding: 3px 10px;
    border-radius: 25px;
    font-weight: 500;
}
.status-mastered { background: var(--green-100); color: var(--green-700); }
.status-strange { background: #ffcdd2; color: var(--red-800); }
.status-learning { background: #fff3e0; color: var(--orange-600); }

/* ---------- Progress ---------- */
.progress-info {
    font-size: 0.7rem;
    background: #f1f8e9;
    padding: 8px 12px;
    border-radius: var(--radius-md);
}
.progress-bar {
    background: var(--grey-200);
    border-radius: var(--radius-md);
    height: 6px;
    margin: 8px 0;
    overflow: hidden;
}
.progress-fill {
    background: var(--green-500);
    height: 100%;
    width: 0%;
    transition: width 0.3s;
}

/* ---------- Quiz Modal ---------- */
.quiz-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s ease;
}
.quiz-modal.show {
    visibility: visible;
    opacity: 1;
}
.quiz-card {
    background: white;
    border-radius: 32px;
    width: 90%;
    max-width: 500px;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.2s;
    position: relative;
}
.quiz-modal.show .quiz-card {
    transform: scale(1);
}
.quiz-word-large {
    font-size: 2rem;
    font-weight: 800;
    background: var(--green-100);
    padding: 15px 20px;
    border-radius: 60px;
    margin: 15px 0;
    display: inline-block;
}
.quiz-option-area {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 20px 0;
}
.quiz-option {
    background: #f5f5f5;
    border: 2px solid #ddd;
    padding: 10px;
    border-radius: 50px;
    font-family: monospace;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.1s;
}
.quiz-option.selected-correct {
    background: var(--green-500);
    color: white;
    border-color: var(--green-700);
}
.quiz-option.selected-wrong {
    background: var(--red-400);
    color: white;
    border-color: var(--red-800);
    text-decoration: line-through;
}
.quiz-stats {
    font-size: 0.7rem;
    background: var(--green-50);
    padding: 8px;
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    display: inline-block;
}
.close-modal {
    background: var(--grey-400);
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    padding: 0;
    font-size: 1.2rem;
}

/* ---------- Notebook ---------- */
.notebook-item {
    background: var(--green-50);
    margin: 6px 0;
    padding: 10px;
    border-radius: var(--radius-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.notebook-item.active {
    background: var(--green-100);
    border: 2px solid var(--green-700);
}
.notebook-name { font-weight: bold; font-size: 0.85rem; }

/* ---------- Voice List ---------- */
.voice-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    border-bottom: 1px solid var(--grey-200);
    flex-wrap: wrap;
    gap: 6px;
}
.voice-name { font-size: 0.7rem; flex: 1; word-break: break-all; }

/* ---------- Utilities ---------- */
.row { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.count-badge {
    background: #ff5722;
    color: white;
    border-radius: var(--radius-md);
    padding: 2px 8px;
    font-size: 0.6rem;
    margin-left: 8px;
}
.tts-status {
    background: var(--green-50);
    padding: 6px 10px;
    border-radius: var(--radius-md);
    margin-top: 8px;
    font-size: 0.65rem;
}
.loading {
    text-align: center;
    padding: 20px;
    color: #666;
    font-size: 0.8rem;
}
.debug-log {
    font-size: 0.6rem;
    color: #888;
    margin-top: 6px;
    max-height: 120px;
    overflow-y: auto;
    background: #f5f5f5;
    padding: 6px;
    border-radius: 8px;
}

/* ==========================================
   认证界面样式 (v2.0)
   ========================================== */

.auth-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--green-700), var(--green-900));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 20px;
}

.auth-card {
    background: white;
    border-radius: 24px;
    width: 100%;
    max-width: 400px;
    padding: 30px 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.auth-header {
    text-align: center;
    margin-bottom: 24px;
}

.auth-header h1 {
    font-size: 1.6rem;
    color: var(--green-800);
    margin-bottom: 4px;
}

.auth-header p {
    color: #7b8a6f;
    font-size: 0.75rem;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
    animation: fade 0.3s ease;
}

.auth-form .card-title {
    text-align: center;
    display: block;
    border-left: none;
    padding-left: 0;
    margin-bottom: 16px;
}

.auth-form input {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.9rem;
    margin-bottom: 12px;
    transition: border-color 0.2s;
}

.auth-form input:focus {
    border-color: var(--green-500);
    outline: none;
    background: white;
}

.auth-form button {
    padding: 12px;
    font-size: 0.95rem;
    margin-top: 8px;
}

.auth-error {
    background: #ffebee;
    color: var(--red-800);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    margin-bottom: 8px;
}

.auth-switch {
    text-align: center;
    margin-top: 16px;
    font-size: 0.8rem;
    color: #888;
}

.auth-switch a {
    color: var(--green-700);
    text-decoration: none;
    font-weight: 600;
}

/* 头像选择器 */
.form-label {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 8px;
    font-weight: 600;
}

.avatar-picker {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px;
    background: #f9f9f9;
    border-radius: 12px;
    max-height: 140px;
    overflow-y: auto;
}

.avatar-option {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.15s;
    border: 2px solid transparent;
    background: white;
}

.avatar-option:hover {
    background: var(--green-50);
    transform: scale(1.1);
}

.avatar-option.selected {
    border-color: var(--green-500);
    background: var(--green-50);
    transform: scale(1.15);
}

/* 账户管理面板头像网格（更紧凑的二维排列） */
.avatar-picker-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(36px, 1fr));
    gap: 6px;
    padding: 8px;
    background: #f9f9f9;
    border-radius: 12px;
    max-height: 180px;
    overflow-y: auto;
}

.avatar-picker-row .avatar-option {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
    margin: 0;
}

/* ---------- 用户信息栏 ---------- */

.user-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 6px;
    padding: 6px 16px;
    background: white;
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.user-avatar {
    font-size: 1.3rem;
}

.user-name {
    font-weight: 600;
    color: var(--green-800);
    font-size: 0.85rem;
}

.logout-btn {
    background: transparent;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    padding: 2px 4px;
    opacity: 0.6;
    transition: opacity 0.15s;
}

.logout-btn:hover {
    opacity: 1;
}

.main-app {
    /* shown/hidden via JS */
}

/* ---------- Footer ---------- */
footer {
    text-align: center;
    font-size: 0.55rem;
    color: #7b8a6f;
    margin: 12px 0;
}

/* ---------- Admin Panel ---------- */
.admin-register-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.admin-register-row input {
    padding: 8px 10px;
    border: 1px solid var(--green-200);
    border-radius: 6px;
    font-size: 0.8rem;
    min-width: 0;
}

.admin-user-list {
    max-height: 60vh;
    overflow-y: auto;
    margin-top: 8px;
}

.admin-user-item {
    border: 1px solid var(--green-100);
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 8px;
    background: #fafffe;
}

.admin-user-item.user-expired {
    background: #fff3f0;
    border-color: #ffcdd2;
}

.admin-user-header {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.admin-user-avatar {
    font-size: 1.4rem;
}

.admin-user-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--green-800);
}

.admin-user-date {
    font-size: 0.7rem;
    margin-left: auto;
}

.admin-user-stats {
    font-size: 0.7rem;
    color: #666;
    margin-bottom: 6px;
}

.admin-user-actions {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.admin-user-actions button {
    padding: 4px 10px;
    border: none;
    border-radius: 4px;
    font-size: 0.7rem;
    cursor: pointer;
    color: #fff;
    transition: opacity 0.15s;
}

.admin-user-actions button:hover {
    opacity: 0.85;
}

.admin-btn-extend {
    background: #4caf50;
}

.admin-btn-password {
    background: #ff9800;
}

.admin-btn-clear {
    background: #9e9e9e;
}

.admin-btn-delete {
    background: #ef5350;
}

.badge-admin {
    font-size: 0.9rem;
}

.badge-expired {
    background: #ef5350;
    color: #fff;
    padding: 1px 6px;
    border-radius: 3px;
    font-size: 0.65rem;
    font-weight: 600;
}

.expiry-warning {
    color: #e65100;
    font-weight: 600;
}

.expiry-expired {
    color: #c62828;
    font-weight: 600;
}

/* ============ 统一弹窗 ============ */
.cm-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: cmFadeIn 0.2s ease;
}
@keyframes cmFadeIn { from { opacity: 0; } to { opacity: 1; } }

.cm-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    min-width: 300px;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    animation: cmSlideUp 0.25s ease;
}
@keyframes cmSlideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.cm-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1b5e20;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e8f5e9;
}

.cm-body { font-size: 0.95rem; line-height: 1.6; color: #333; margin-bottom: 12px; }
.cm-body p { margin: 0; white-space: pre-line; }

.cm-input-wrap { margin-bottom: 12px; }
.cm-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #c8e6c9;
    border-radius: 8px;
    font-size: 0.95rem;
    box-sizing: border-box;
}
.cm-input:focus { outline: none; border-color: #4caf50; box-shadow: 0 0 0 3px rgba(76,175,80,0.15); }

.cm-btns { display: flex; gap: 10px; justify-content: flex-end; margin-top: 16px; }
.cm-btn {
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.15s;
}
.cm-btn-primary {
    background: #2e7d32;
    color: #fff;
}
.cm-btn-primary:hover { background: #1b5e20; }
.cm-btn-ghost {
    background: transparent;
    color: #666;
    border: 1px solid #ddd;
}
.cm-btn-ghost:hover { background: #f5f5f5; }

/* ============ 今日任务卡片模式 ============ */
.today-card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 8px 0;
}

.today-card {
    width: 100%;
    max-width: 360px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 20px;
    padding: 28px 20px 20px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(46,125,50,0.12);
    transition: transform 0.3s, box-shadow 0.3s;
}

.today-card-word {
    font-size: 3rem;
    font-weight: 700;
    color: #1b5e20;
    margin-bottom: 8px;
    line-height: 1.2;
}

.today-card-jyutping {
    font-size: 1.3rem;
    color: #388e3c;
    font-style: italic;
    margin-bottom: 20px;
}

.today-card-index {
    font-size: 0.8rem;
    color: #66bb6a;
    margin-bottom: 4px;
}

.today-card-btns {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.today-card-btns button {
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.15s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.today-card-btn-speak {
    background: #fff;
    color: #2e7d32;
    border: 2px solid #a5d6a7 !important;
}
.today-card-btn-speak:hover { background: #f1f8e9; }

.today-card-btn-master {
    background: #43a047;
    color: #fff;
}
.today-card-btn-master:hover { background: #2e7d32; }

.today-card-btn-strange {
    background: #ef5350;
    color: #fff;
}
.today-card-btn-strange:hover { background: #c62828; }

.today-card-done {
    font-size: 1.1rem;
    color: #2e7d32;
    font-weight: 600;
    padding: 40px 0;
}

.today-card-done .done-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 12px;
}

/* ========== 🏆 排行榜 ========== */

.lb-tabs {
    display: flex;
    gap: 6px;
    margin: 10px 0 6px;
    flex-wrap: wrap;
}
.lb-tab-btn {
    flex: 1;
    min-width: 60px;
    padding: 7px 10px;
    font-size: 0.82rem;
    font-weight: 600;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: #f5f5f5;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}
.lb-tab-btn.active {
    background: #2e7d32;
    color: #fff;
    border-color: #2e7d32;
}

.my-rank-bar {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-radius: 10px;
    padding: 10px 14px;
    margin: 8px 0;
    font-size: 0.85rem;
    color: #2e7d32;
    text-align: center;
}
.my-rank-bar strong {
    font-size: 1.1rem;
}

.lb-list {
    max-height: 480px;
    overflow-y: auto;
}

.lb-player {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 8px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s;
}
.lb-player:hover {
    background: #f9f9f9;
}
.lb-player.me {
    background: #e8f5e9;
    border-radius: 8px;
    border-bottom: 2px solid #a5d6a7;
}

.lb-rank {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}
.lb-rank.gold { background: #ffd700; color: #5d4037; }
.lb-rank.silver { background: #e0e0e0; color: #424242; }
.lb-rank.bronze { background: #ffcc80; color: #5d4037; }
.lb-rank.normal { background: #f5f5f5; color: #999; }

.lb-avatar {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.lb-info {
    flex: 1;
    min-width: 0;
}
.lb-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lb-count {
    font-size: 0.7rem;
    color: #999;
}

.lb-like-wrap {
    display: flex;
    align-items: center;
    gap: 3px;
    flex-shrink: 0;
}
.lb-like-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 50%;
    transition: all 0.2s;
    line-height: 1;
}
.lb-like-btn:hover {
    background: #ffebee;
    transform: scale(1.2);
}
.lb-like-btn.liked {
    animation: likePop 0.3s ease;
}
@keyframes likePop {
    0% { transform: scale(1); }
    50% { transform: scale(1.5); }
    100% { transform: scale(1); }
}
.lb-like-count {
    font-size: 0.7rem;
    color: #ef5350;
    font-weight: 600;
    min-width: 16px;
    text-align: center;
}

/* Likers list */
.lb-liker {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.85rem;
}
.lb-liker .lb-avatar {
    font-size: 1.3rem;
}
.lb-liker .lb-info {
    flex: 1;
}
.lb-liker .lb-time {
    font-size: 0.65rem;
    color: #bbb;
    flex-shrink: 0;
}
