/* CSS variables for a premium dark space theme */
:root {
    --bg-base: hsl(222, 28%, 7%);
    --bg-sidebar: hsl(222, 32%, 5%);
    --card-bg: rgba(22, 28, 45, 0.5);
    --card-border: rgba(255, 255, 255, 0.07);
    --card-border-hover: rgba(255, 255, 255, 0.15);
    
    --accent-cyan: hsl(192, 95%, 48%);
    --accent-cyan-glow: hsla(192, 95%, 48%, 0.35);
    --accent-emerald: hsl(145, 80%, 45%);
    --accent-emerald-glow: hsla(145, 80%, 45%, 0.3);
    --accent-crimson: hsl(355, 85%, 55%);
    --accent-crimson-glow: hsla(355, 85%, 55%, 0.3);
    
    --text-primary: hsl(210, 30%, 96%);
    --text-secondary: hsl(210, 18%, 78%);
    --text-muted: hsl(210, 12%, 55%);
    
    --sidebar-width: 260px;
    --header-height: 80px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-base);
    color: var(--text-primary);
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    position: relative;
}

/* Background glows */
.glow-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, hsla(192, 95%, 48%, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, hsla(145, 80%, 45%, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, hsla(280, 80%, 50%, 0.03) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

/* Scrollbars */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Layout Container */
.app-container {
    display: flex;
    width: 100vw;
    height: 100vh;
    z-index: 1;
}

/* Sidebar Navigation */
.sidebar {
    width: var(--sidebar-width);
    background-color: var(--bg-sidebar);
    border-right: 1px solid var(--card-border);
    display: flex;
    flex-direction: column;
    padding: 24px 16px;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px 32px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-icon {
    font-size: 28px;
    color: var(--accent-cyan);
    filter: drop-shadow(0 0 8px var(--accent-cyan-glow));
}

.logo-text h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #fff 30%, var(--accent-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-text span {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: transparent;
    border: none;
    border-radius: 12px;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.nav-item i {
    font-size: 16px;
    transition: var(--transition-smooth);
}

.nav-item:hover {
    color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.03);
}

.nav-item.active {
    color: var(--accent-cyan);
    background-color: rgba(30, 215, 252, 0.08);
    font-weight: 600;
}

.nav-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 3px;
    background-color: var(--accent-cyan);
    border-radius: 0 4px 4px 0;
    box-shadow: 0 0 8px var(--accent-cyan);
}

.nav-item .badge {
    margin-left: auto;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.nav-item.active .badge {
    background: var(--accent-cyan);
    color: var(--bg-sidebar);
}

.sidebar-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.02);
    flex-grow: 1;
}

.status-indicator .pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-emerald);
    position: relative;
}

.status-indicator.online .pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--accent-emerald);
    top: 0;
    left: 0;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}

.status-text {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Main Content Area */
.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow-y: auto;
    padding: 0 32px 32px 32px;
}

/* Header */
.content-header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--card-border);
    margin-bottom: 24px;
    flex-shrink: 0;
}

.header-title h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.header-title p {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

.server-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 30px;
    font-size: 13px;
    color: var(--text-secondary);
}

.server-badge i {
    color: var(--accent-cyan);
}

/* Tab Panels */
.tab-panel {
    display: none;
    flex-direction: column;
    flex-grow: 1;
    animation: fadeIn 0.4s ease-out;
}

.tab-panel.active {
    display: flex;
}

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

/* Glassmorphism Cards */
.card {
    background-color: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

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

.card-header {
    padding: 18px 24px;
    border-bottom: 1px solid var(--card-border);
}

.card-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-header h3 i {
    color: var(--accent-cyan);
}

.card-body {
    padding: 24px;
    flex-grow: 1;
}

/* Playground Panel Specific Layout */
.playground-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    flex-grow: 1;
    align-items: stretch;
}

.playground-card {
    min-height: 480px;
}

/* Suggest Chips */
.suggested-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.chip {
    padding: 8px 14px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 30px;
    font-size: 12px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.chip:hover {
    background-color: rgba(30, 215, 252, 0.08);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    transform: translateY(-1px);
}

/* Inputs & Form Groups */
.input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

textarea, input[type="text"] {
    background-color: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 14px 16px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    outline: none;
    transition: var(--transition-smooth);
}

textarea:focus, input[type="text"]:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan-glow);
    background-color: rgba(0, 0, 0, 0.35);
}

.input-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan), hsl(200, 95%, 40%));
    color: hsl(222, 32%, 5%);
    box-shadow: 0 4px 16px var(--accent-cyan-glow);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px var(--accent-cyan);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--card-border);
    color: var(--text-secondary);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border-color: var(--card-border-hover);
}

.btn-sm {
    padding: 8px 14px;
    font-size: 12px;
}

/* Loader Animation */
.loader {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-top: 2px solid #000;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hidden {
    display: none !important;
}

/* Divider */
.divider {
    border: none;
    border-top: 1px solid var(--card-border);
    margin: 24px 0;
}

/* Response Container styling */
.response-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.response-header h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: var(--text-secondary);
}

.safety-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.safety-badge.safe {
    background-color: rgba(25, 135, 84, 0.15);
    color: var(--accent-emerald);
    border: 1px solid var(--accent-emerald);
    box-shadow: 0 0 8px var(--accent-emerald-glow);
}

.safety-badge.toxic {
    background-color: rgba(220, 53, 69, 0.15);
    color: var(--accent-crimson);
    border: 1px solid var(--accent-crimson);
    box-shadow: 0 0 10px var(--accent-crimson-glow);
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% { opacity: 0.9; }
    50% { opacity: 0.6; }
    100% { opacity: 0.9; }
}

.answer-box {
    background-color: rgba(0, 0, 0, 0.15);
    border: 1px solid var(--card-border);
    border-left: 4px solid var(--accent-cyan);
    border-radius: 8px;
    padding: 16px 20px;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 14px;
}

.response-container.toxic-active .answer-box {
    border-left-color: var(--accent-crimson);
}

.metrics-row {
    display: flex;
    gap: 24px;
    font-size: 12px;
    color: var(--text-muted);
}

.metrics-row strong {
    color: var(--text-secondary);
}

/* RAG Context Display styling */
.context-card .card-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 520px;
    overflow-y: auto;
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-muted);
    text-align: center;
    padding: 40px;
    gap: 16px;
}

.empty-state i {
    font-size: 48px;
}

.empty-state p {
    font-size: 14px;
    max-width: 280px;
    line-height: 1.5;
}

.context-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 16px;
}

.context-section:last-child {
    border-bottom: none;
}

.context-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.context-item {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.5;
}

.context-item small {
    display: block;
    margin-bottom: 4px;
    color: var(--text-muted);
    font-weight: 500;
}

.context-item span.cmd {
    font-family: monospace;
    font-size: 13px;
    color: var(--accent-cyan);
    font-weight: bold;
}

/* Logs and Tables Styling */
.search-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-header h3 {
    margin-right: auto;
}

.search-box {
    position: relative;
    width: 300px;
}

.search-box i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.search-box input {
    width: 100%;
    padding: 8px 12px 8px 36px;
    border-radius: 20px;
    font-size: 13px;
    height: 36px;
}

.table-container {
    overflow-x: auto;
    max-height: 600px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.data-table th, .data-table td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
}

.data-table th {
    font-weight: 600;
    color: var(--text-muted);
    background-color: rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1;
}

.data-table tbody tr {
    transition: var(--transition-smooth);
}

.data-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.015);
}

.data-table td.player-name {
    font-weight: 600;
    color: var(--text-primary);
}

.data-table td.file-name {
    color: var(--text-muted);
    font-size: 11px;
}

.text-center {
    text-align: center;
}

/* Rules & Commands Browse */
.rules-search-container {
    margin-bottom: 20px;
}

.rules-search-container .search-bar {
    display: flex;
    align-items: center;
    padding: 6px 20px;
    border-radius: 30px;
    background-color: var(--card-bg);
}

.rules-search-container .search-bar i {
    color: var(--text-muted);
    margin-right: 12px;
}

.rules-search-container .search-bar input {
    background: transparent;
    border: none;
    flex-grow: 1;
    height: 44px;
    padding: 0;
}

.rules-search-container .search-bar input:focus {
    box-shadow: none;
}

.rules-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    flex-grow: 1;
    max-height: 620px;
}

.rules-col, .commands-col {
    max-height: 620px;
}

.scrollable-body {
    overflow-y: auto;
    max-height: calc(620px - 57px);
}

.rule-group {
    margin-bottom: 24px;
}

.rule-group h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: var(--accent-cyan);
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 6px;
}

.rule-item {
    padding: 10px 14px;
    background-color: rgba(255, 255, 255, 0.01);
    border-radius: 8px;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.rule-item:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.cmd-card {
    display: flex;
    flex-direction: column;
    padding: 12px 16px;
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.5;
    transition: var(--transition-smooth);
}

.cmd-card:hover {
    background-color: rgba(30, 215, 252, 0.04);
    border-color: rgba(30, 215, 252, 0.2);
}

.cmd-trigger {
    font-family: monospace;
    font-weight: 700;
    color: var(--accent-cyan);
    font-size: 14px;
}

.cmd-desc {
    color: var(--text-secondary);
    margin-top: 4px;
}

/* Settings Form Styling */
.settings-card {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-help {
    font-size: 11px;
    color: var(--text-muted);
}

.form-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 24px;
    border-top: 1px solid var(--card-border);
    padding-top: 20px;
}

.save-status {
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.save-status.success {
    color: var(--accent-emerald);
}

.save-status.error {
    color: var(--accent-crimson);
}

/* Login Overlay Styling */
.login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 12, 22, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.login-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.login-card {
    width: 100%;
    max-width: 420px;
    padding: 36px 32px;
    background: rgba(18, 24, 40, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px hsla(192, 95%, 48%, 0.15);
    text-align: center;
    animation: loginCardPop 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes loginCardPop {
    0% { transform: scale(0.92); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.login-header {
    margin-bottom: 28px;
}

.login-logo-icon {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, hsla(192, 95%, 48%, 0.2), hsla(280, 80%, 50%, 0.2));
    border: 1px solid hsla(192, 95%, 48%, 0.4);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: var(--accent-cyan);
    box-shadow: 0 0 24px var(--accent-cyan-glow);
}

.login-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.login-header p {
    font-size: 13px;
    color: var(--text-muted);
}

.login-form {
    text-align: left;
}

.password-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrap .input-icon {
    position: absolute;
    left: 14px;
    color: var(--text-muted);
    font-size: 14px;
    pointer-events: none;
}

.password-input-wrap input {
    width: 100%;
    padding: 13px 14px 13px 40px;
    background: rgba(12, 16, 28, 0.85);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 14px;
    outline: none;
    transition: var(--transition-smooth);
}

.password-input-wrap input:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 16px var(--accent-cyan-glow);
}

.login-error {
    display: flex;
    align-items: center;
    gap: 8px;
    background: hsla(355, 85%, 55%, 0.12);
    border: 1px solid hsla(355, 85%, 55%, 0.3);
    color: var(--accent-crimson);
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 18px;
}

.btn-block {
    width: 100%;
    justify-content: center;
    padding: 13px;
    font-size: 14px;
    margin-top: 8px;
}

.btn-logout {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    width: 34px;
    height: 34px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.btn-logout:hover {
    background: hsla(355, 85%, 55%, 0.15);
    border-color: hsla(355, 85%, 55%, 0.35);
    color: var(--accent-crimson);
}

/* Logsparser Sync Banner */
.sync-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-radius: 14px;
    margin-bottom: 20px;
    gap: 16px;
    flex-wrap: wrap;
}

.sync-info-group {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.sync-info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sync-info-item .info-label {
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.sync-info-item .info-val {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.sync-action-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sync-status-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    background: hsla(192, 95%, 48%, 0.12);
    border: 1px solid hsla(192, 95%, 48%, 0.3);
    color: var(--accent-cyan);
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 13px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.admin-badge {
    background: rgba(145, 80, 245, 0.15);
    border: 1px solid rgba(145, 80, 245, 0.3);
    color: #c084fc;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

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

