/* ============================================
   Planfix Dashboard — Main Styles
   Dark theme, management interface
   ============================================ */

/* === Variables === */
:root {
    /* Status colors */
    --status-new: #3B82F6;
    --status-progress: #F59E0B;
    --status-done: #10B981;
    --status-completed: #6B7280;

    /* Priority */
    --priority-urgent: #EF4444;

    /* Overdue */
    --overdue-bg: #450a0a;
    --overdue-border: #dc2626;
    --overdue-text: #fca5a5;

    /* Backgrounds */
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --bg-card: #1e293b;
    --bg-hover: #263348;

    /* Text */
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    /* Borders */
    --border: #334155;
    --border-hover: #475569;

    /* Sidebar */
    --sidebar-width: 220px;
    --sidebar-bg: #0f172a;

    /* Typography */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* === Reset === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    display: flex;
    min-height: 100vh;
}

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

/* === Sidebar === */
.sidebar {
    width: var(--sidebar-width);
    background: var(--sidebar-bg);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 100;
    padding: 20px 0;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px 24px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
}

.sidebar-brand .logo {
    font-size: 24px;
}

.sidebar-brand .brand-text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.sidebar-nav {
    list-style: none;
    flex: 1;
    padding: 0 12px;
}

.nav-item {
    margin-bottom: 4px;
}

.nav-item a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.15s ease;
}

.nav-item a:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.nav-item.active a {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
}

.nav-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.sidebar-footer {
    padding: 12px 20px;
    border-top: 1px solid var(--border);
}

.sync-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
}

.sync-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
}

.sync-dot.ok {
    background: #10b981;
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.5);
}

.sync-dot.error {
    background: #ef4444;
}

/* === Main Content === */
.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    padding: 24px 32px;
    min-height: 100vh;
}

/* === Page Header === */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-left: 0;
}

@media (max-width: 768px) {
    .page-header {
        padding-left: 52px;
    }
}

.page-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.page-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* === Stats Grid === */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.stat-card.stat-new::before { background: var(--status-new); }
.stat-card.stat-progress::before { background: var(--status-progress); }
.stat-card.stat-done::before { background: var(--status-done); }
.stat-card.stat-completed::before { background: var(--status-completed); }
.stat-card.stat-total::before { background: #8b5cf6; }

.stat-value {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-card.stat-new .stat-value { color: var(--status-new); }
.stat-card.stat-progress .stat-value { color: var(--status-progress); }
.stat-card.stat-done .stat-value { color: var(--status-done); }
.stat-card.stat-completed .stat-value { color: var(--status-completed); }

/* === Section === */
.section {
    margin-bottom: 32px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
}

/* === Table === */
.table-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    text-align: left;
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border);
}

td {
    padding: 12px 16px;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background: var(--bg-hover);
}

/* === Status Badge === */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.badge-new {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
}

.badge-in_progress {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
}

.badge-done {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
}

.badge-completed {
    background: rgba(107, 114, 128, 0.15);
    color: #9ca3af;
}

.badge-urgent {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
}

/* === Timer === */
.timer {
    font-family: 'JetBrains Mono', 'SF Mono', monospace;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.timer-ok { color: #34d399; }
.timer-warn { color: #fbbf24; }
.timer-danger { color: #f87171; }

/* === Task Row === */
.task-address {
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.task-institution {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.task-assignee {
    display: flex;
    align-items: center;
    gap: 6px;
}

.task-assignee .avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* === Kanban Columns === */
.kanban {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: start;
}

.kanban-col {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    min-height: 400px;
}

.kanban-col-header {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kanban-col-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.kanban-col-count {
    background: var(--bg-tertiary);
    padding: 2px 8px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

.kanban-col-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* === Task Card (compact) === */
.task-card-compact {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px;
    cursor: default;
    transition: all 0.15s ease;
}

.task-card-compact:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow);
}

.task-card-compact.overdue {
    border-color: var(--overdue-border);
    background: var(--overdue-bg);
}

.task-card-compact .card-id {
    font-size: 11px;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
}

.task-card-compact .card-address {
    font-size: 13px;
    font-weight: 500;
    margin: 4px 0;
    line-height: 1.3;
}

.task-card-compact .card-institution {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.task-card-compact .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
    border-top: 1px solid var(--border);
}

/* === Chart Container === */
.chart-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 24px;
}

.chart-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

/* === Analytics === */
.analysis-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    line-height: 1.7;
}

.analysis-box h3 {
    color: #60a5fa;
    margin: 16px 0 8px;
    font-size: 16px;
}

.analysis-box h3:first-child {
    margin-top: 0;
}

.analysis-box ul {
    padding-left: 20px;
    margin: 8px 0;
}

.analysis-box li {
    margin-bottom: 4px;
}

.analysis-box strong {
    color: var(--text-primary);
}

/* === Grid 2 cols === */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ===== Dashboard New Layout ===== */

/* Top stats: 5 columns on desktop */
.top-stats {
    grid-template-columns: repeat(5, 1fr);
    margin-bottom: 16px;
}

/* Middle row: numeric (2fr) + assignees (1fr) */
.dashboard-middle {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
    align-items: stretch;
}

/* Left panel: stacked numeric blocks */
.dashboard-left-panel {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Numeric blocks */
.numeric-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
}

.numeric-block-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Lifetime: 3 items in a row */
.numeric-row {
    display: flex;
    gap: 8px;
}

.numeric-item {
    flex: 1;
    text-align: center;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    padding: 10px 6px;
}

.numeric-value {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.numeric-label {
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 3px;
}

/* Monthly + Weekly side by side */
.numeric-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.numeric-split .numeric-item {
    padding: 8px 6px;
}

.numeric-split .numeric-value {
    font-size: 20px;
}

/* Right panel: assignees table */
.dashboard-side-panel {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.dashboard-side-panel .section-header {
    padding: 14px 16px 10px;
    margin-bottom: 0;
    flex-shrink: 0;
}

.dashboard-side-panel .section-title {
    font-size: 15px;
}

.dashboard-side-panel .table-wrapper {
    border: none;
    border-radius: 0 0 var(--radius) var(--radius);
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}

/* Bottom panel: institutions */
.dashboard-bottom-panel {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.dashboard-bottom-panel .section-header {
    padding: 14px 16px 10px;
    margin-bottom: 0;
}

.dashboard-bottom-panel .table-wrapper {
    border: none;
    border-radius: 0 0 var(--radius) var(--radius);
    max-height: 300px;
    overflow-y: auto;
}

/* ===== Responsive ===== */

/* Tablet */
@media (max-width: 1200px) {
    .kanban {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .top-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    .dashboard-middle {
        grid-template-columns: 1fr;
    }
    .numeric-split {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --sidebar-width: 0px;
    }
@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        width: 220px;
        transform: translateX(-100%);
        transition: transform 0.25s ease;
        z-index: 200;
    }
    .sidebar.open {
        transform: translateX(0);
    }
    .main-content {
        margin-left: 0;
        padding: 12px;
    }
        margin-bottom: 16px;
    }
    .page-title {
        font-size: 18px;
    }
    .page-subtitle {
        font-size: 12px;
    }
    .kanban {
        grid-template-columns: 1fr;
    }
    .grid-2 {
        grid-template-columns: 1fr;
    }
    /* Stats: 2 cols on mobile */
    .stats-grid,
    .top-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 12px;
    }
    .stat-card {
        padding: 14px;
    }
    .stat-value {
        font-size: 24px;
    }
    .stat-label {
        font-size: 11px;
    }
    /* Dashboard middle */
    .dashboard-middle {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 12px;
    }
    .dashboard-left-panel {
        gap: 10px;
    }
    .numeric-block {
        padding: 12px;
    }
    .numeric-value {
        font-size: 18px;
    }
    .numeric-label {
        font-size: 9px;
    }
    .numeric-split {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .numeric-split .numeric-value {
        font-size: 16px;
    }
    .dashboard-side-panel .section-title {
        font-size: 14px;
    }
    /* Tables */
    .table-wrapper {
        font-size: 12px;
    }
    th, td {
        padding: 8px 10px;
    }
    .task-assignee .avatar {
        display: none;
    }
    /* Tabs scroll */
    .tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
    }
    .tab {
        flex-shrink: 0;
        padding: 8px 12px;
        font-size: 12px;
    }
    /* Timers */
    .timers-grid {
        grid-template-columns: 1fr;
    }
    /* Chart container */
    .chart-container {
        padding: 12px;
    }
    /* Sidebar footer hidden on mobile */
    .sidebar-footer {
        display: block;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .stats-grid,
    .top-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .stat-card {
        padding: 10px;
    }
    .stat-value {
        font-size: 20px;
    }
    .numeric-row {
        gap: 6px;
    }
    .numeric-item {
        padding: 8px 4px;
    }
    .numeric-value {
        font-size: 16px;
    }
    .numeric-split {
        grid-template-columns: 1fr;
    }
}

/* === Scrollbar === */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--border-hover);
}

/* === Animations === */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.3s ease;
}

/* ===== Mobile Menu ===== */
.menu-toggle {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 300;
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
}
@media (min-width: 769px) {
    .menu-toggle {
        display: none !important;
    }
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.2s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 150;
}
.sidebar-overlay.active {
    display: block;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
}

/* === Loading skeleton === */
.skeleton {
    background: linear-gradient(90deg, var(--bg-tertiary) 25%, var(--border) 50%, var(--bg-tertiary) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* === Tabs === */
.tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 4px;
}

.tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.15s ease;
    white-space: nowrap;
}

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

.tab.active {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.tab-count {
    background: var(--bg-primary);
    padding: 2px 8px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
}

.tab.active .tab-count {
    background: var(--bg-secondary);
}

.tab-count.tab-new { color: var(--status-new); }
.tab-count.tab-progress { color: var(--status-progress); }
.tab-count.tab-done { color: var(--status-done); }
.tab-count.tab-completed { color: var(--status-completed); }

/* === Tasks Table === */
.tasks-table {
    width: 100%;
    border-collapse: collapse;
}

.tasks-table th {
    position: sticky;
    top: 0;
    z-index: 10;
}

.tasks-table .task-id a {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #60a5fa;
    text-decoration: none;
}

.tasks-table .task-id a:hover {
    text-decoration: underline;
}

.tasks-table .task-address {
    font-weight: 500;
    max-width: 250px;
}

.tasks-table .task-institution {
    font-size: 12px;
    color: var(--text-muted);
}

.tasks-table .task-reason {
    font-size: 12px;
    color: var(--text-muted);
    max-width: 200px;
}

.tasks-table .task-reason .reason-text {
    display: inline-block;
    background: rgba(245, 158, 11, 0.1);
    color: #fbbf24;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
}

.tasks-table .task-date {
    font-size: 12px;
    color: var(--text-muted);
    white-space: nowrap;
}

.tasks-table .task-timer {
    white-space: nowrap;
}

.tasks-table .assignee-cell {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tasks-table .assignee-cell .avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

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

/* === Timers Grid === */
.timers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}

.timer-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px;
    transition: all 0.15s ease;
}

.timer-card:hover {
    border-color: var(--border-hover);
}

.timer-card.timer-danger {
    border-color: #dc2626;
    background: rgba(220, 38, 38, 0.05);
}

.timer-card.timer-warn {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.05);
}

.timer-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.timer-card-id {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #60a5fa;
}

.timer-card-address {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 4px;
    line-height: 1.3;
}

.timer-card-assignee {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.timer-card-time {
    font-family: 'JetBrains Mono', monospace;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.timer-card-time.timer-ok { color: #34d399; }
.timer-card-time.timer-warn { color: #fbbf24; }
.timer-card-time.timer-danger { color: #f87171; }

/* === Comments === */
.task-comments {
    width: 40px;
    text-align: center;
}
.btn-comments {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    padding: 2px 6px;
    border-radius: 6px;
    transition: background 0.15s;
}
.btn-comments:hover {
    background: var(--bg-hover);
}
.comments-row td {
    padding: 0 !important;
}
.comments-cell {
    padding: 12px 16px !important;
    background: var(--bg-secondary);
}
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.comment-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
}
.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}
.comment-owner {
    font-weight: 600;
    font-size: 13px;
    color: #60a5fa;
}
.comment-date {
    font-size: 11px;
    color: var(--text-muted);
}
.comment-text {
    font-size: 13px;
    color: var(--text-primary);
    line-height: 1.5;
}
