/*
 * OATHS Tactical Ops Theme for Basecoat UI
 * 
 * This file overrides Basecoat's default shadcn/ui theme variables
 * to match the OATHS dark cyberpunk design system.
 * 
 * Primary: Orange (#f97316)
 * Background: Black (#000000)
 * Surface: Neutral-900 (#171717)
 * Border: Neutral-700 (#404040)
 */

@layer base {
    :root {
        /* OATHS Tactical Ops Dark Theme Variables */

        /* Background colors - Pure black base */
        --background: 0 0% 0%;
        /* #000000 - black */
        --foreground: 0 0% 100%;
        /* #ffffff - white */

        /* Card/Surface colors - Dark gray */
        --card: 0 0% 9%;
        /* #171717 - neutral-900 */
        --card-foreground: 0 0% 100%;
        /* #ffffff - white */

        /* Popover/Dropdown colors */
        --popover: 0 0% 9%;
        /* #171717 - neutral-900 */
        --popover-foreground: 0 0% 100%;
        /* #ffffff - white */

        /* Primary - Orange accent */
        --primary: 25 95% 53%;
        /* #f97316 - orange-500 */
        --primary-foreground: 0 0% 100%;
        /* #ffffff - white */

        /* Secondary - Neutral gray */
        --secondary: 0 0% 15%;
        /* #262626 - neutral-800 */
        --secondary-foreground: 0 0% 100%;
        /* #ffffff - white */

        /* Muted colors */
        --muted: 0 0% 15%;
        /* #262626 - neutral-800 */
        --muted-foreground: 0 0% 64%;
        /* #a3a3a3 - neutral-400 */

        /* Accent - Orange tint */
        --accent: 25 95% 53%;
        /* #f97316 - orange-500 */
        --accent-foreground: 0 0% 100%;
        /* #ffffff - white */

        /* Destructive - Red */
        --destructive: 0 72% 51%;
        /* #dc2626 - red-600 */
        --destructive-foreground: 0 0% 100%;
        /* #ffffff - white */

        /* Border colors */
        --border: 0 0% 25%;
        /* #404040 - neutral-700 */
        --input: 0 0% 25%;
        /* #404040 - neutral-700 */
        --ring: 25 95% 53%;
        /* #f97316 - orange-500 */

        /* Radius - Sharp corners for tactical look */
        --radius: 0.25rem;

        /* Sidebar specific variables */
        --sidebar-background: 0 0% 9%;
        /* #171717 - neutral-900 */
        --sidebar-foreground: 0 0% 64%;
        /* #a3a3a3 - neutral-400 */
        --sidebar-primary: 25 95% 53%;
        /* #f97316 - orange-500 */
        --sidebar-primary-foreground: 0 0% 100%;
        --sidebar-accent: 0 0% 15%;
        /* #262626 - neutral-800 */
        --sidebar-accent-foreground: 0 0% 100%;
        --sidebar-border: 0 0% 25%;
        /* #404040 - neutral-700 */
        --sidebar-ring: 25 95% 53%;
        /* #f97316 - orange-500 */

        /* Chart colors - Using orange spectrum */
        --chart-1: 25 95% 53%;
        /* orange-500 */
        --chart-2: 25 95% 63%;
        /* orange-400 */
        --chart-3: 25 95% 43%;
        /* orange-600 */
        --chart-4: 0 0% 45%;
        /* neutral-500 */
        --chart-5: 0 0% 64%;
        /* neutral-400 */
    }

    /* Dark mode is the default (no light mode switch needed) */
    .dark {
        --background: 0 0% 0%;
        --foreground: 0 0% 100%;
        --card: 0 0% 9%;
        --card-foreground: 0 0% 100%;
        --popover: 0 0% 9%;
        --popover-foreground: 0 0% 100%;
        --primary: 25 95% 53%;
        --primary-foreground: 0 0% 100%;
        --secondary: 0 0% 15%;
        --secondary-foreground: 0 0% 100%;
        --muted: 0 0% 15%;
        --muted-foreground: 0 0% 64%;
        --accent: 25 95% 53%;
        --accent-foreground: 0 0% 100%;
        --destructive: 0 72% 51%;
        --destructive-foreground: 0 0% 100%;
        --border: 0 0% 25%;
        --input: 0 0% 25%;
        --ring: 25 95% 53%;
    }
}

/* Override html/body defaults */
html {
    color-scheme: dark;
}

body {
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    font-feature-settings: "rlig" 1, "calt" 1;
}

/* ============================================
   OATHS Button Component Styles
   ============================================ */

/* Primary button - Orange */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 150ms ease;
    padding: 0.5rem 1rem;
    background-color: #f97316;
    color: #ffffff;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #ea580c;
}

.btn:focus-visible {
    outline: 2px solid #f97316;
    outline-offset: 2px;
}

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

/* Secondary button */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 150ms ease;
    padding: 0.5rem 1rem;
    background-color: #262626;
    color: #ffffff;
    border: 1px solid #404040;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #404040;
}

/* Outline button */
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 150ms ease;
    padding: 0.5rem 1rem;
    background-color: transparent;
    color: #a3a3a3;
    border: 1px solid #404040;
    cursor: pointer;
}

.btn-outline:hover {
    background-color: #262626;
    color: #ffffff;
}

/* Ghost button */
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 150ms ease;
    padding: 0.5rem 1rem;
    background-color: transparent;
    color: #a3a3a3;
    border: none;
    cursor: pointer;
}

.btn-ghost:hover {
    background-color: #262626;
    color: #ffffff;
}

/* Destructive button */
.btn-destructive {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 150ms ease;
    padding: 0.5rem 1rem;
    background-color: #dc2626;
    color: #ffffff;
    border: none;
    cursor: pointer;
}

.btn-destructive:hover {
    background-color: #b91c1c;
}

/* Icon button */
.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.25rem;
    transition: all 150ms ease;
    background-color: transparent;
    color: #a3a3a3;
    border: none;
    cursor: pointer;
}

.btn-icon:hover {
    background-color: #262626;
    color: #f97316;
}

/* Button sizes */
.btn-sm {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* ============================================
   OATHS Card Component Styles
   ============================================ */

.card {
    border-radius: 0.25rem;
    border: 1px solid #404040;
    background-color: #171717;
    padding: 1.5rem;
    transition: border-color 150ms ease;
}

.card:hover {
    border-color: #525252;
}

/* ============================================
   OATHS Badge Component Styles
   ============================================ */

.badge {
    display: inline-flex;
    align-items: center;
    border-radius: 0.25rem;
    padding: 0.125rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 500;
    background-color: #262626;
    color: #ffffff;
}

.badge-secondary {
    display: inline-flex;
    align-items: center;
    border-radius: 0.25rem;
    padding: 0.125rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 500;
    background-color: #262626;
    color: #a3a3a3;
}

.badge-destructive {
    display: inline-flex;
    align-items: center;
    border-radius: 0.25rem;
    padding: 0.125rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 500;
    background-color: rgba(220, 38, 38, 0.2);
    color: #ef4444;
}

.badge-outline {
    display: inline-flex;
    align-items: center;
    border-radius: 0.25rem;
    padding: 0.125rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 500;
    background-color: transparent;
    color: #a3a3a3;
    border: 1px solid #404040;
}

.badge-success {
    display: inline-flex;
    align-items: center;
    border-radius: 0.25rem;
    padding: 0.125rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 500;
    background-color: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.badge-warning {
    display: inline-flex;
    align-items: center;
    border-radius: 0.25rem;
    padding: 0.125rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 500;
    background-color: rgba(234, 179, 8, 0.2);
    color: #eab308;
}

.badge-active {
    display: inline-flex;
    align-items: center;
    border-radius: 0.25rem;
    padding: 0.125rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 500;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* ============================================
   OATHS Alert Component Styles
   ============================================ */

.alert {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border-radius: 0.25rem;
    border: 1px solid #404040;
    background-color: #171717;
    padding: 1rem;
}

.alert-destructive {
    border-color: rgba(220, 38, 38, 0.5);
    background-color: rgba(220, 38, 38, 0.1);
}

.alert-warning {
    border-color: rgba(234, 179, 8, 0.5);
    background-color: rgba(234, 179, 8, 0.1);
}

/* ============================================
   OATHS Toast Component Styles
   ============================================ */

.toast {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border-radius: 0.25rem;
    border: 1px solid #404040;
    background-color: #171717;
    padding: 1rem;
    min-width: 300px;
    max-width: 420px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -4px rgba(0, 0, 0, 0.3);
}

.toast.toast-success {
    border-color: #404040;
    background-color: #171717;
}

.toast.toast-error {
    border-color: rgba(220, 38, 38, 0.5);
    background-color: rgba(220, 38, 38, 0.1);
}

.toast.toast-warning {
    border-color: rgba(234, 179, 8, 0.5);
    background-color: rgba(234, 179, 8, 0.1);
}

.toast.toast-info {
    border-color: #404040;
    background-color: #171717;
}

/* Toast animations */
.toast.animate-slide-in,
.alert.animate-slide-in {
    animation: toastSlideIn 300ms ease-out forwards;
}

.toast.animate-slide-out,
.alert.animate-slide-out {
    animation: toastSlideOut 150ms ease-in forwards;
}

@keyframes toastSlideIn {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toastSlideOut {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* ============================================
   OATHS Table Component Styles
   ============================================ */

.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.table thead {
    background-color: #262626;
}

.table th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 500;
    color: #a3a3a3;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.table td {
    padding: 0.75rem 1rem;
    color: #a3a3a3;
    border-bottom: 1px solid #262626;
}

.table tbody tr:hover {
    background-color: rgba(38, 38, 38, 0.5);
}

/* ============================================
   OATHS Sidebar Component Styles
   ============================================ */

.sidebar {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: #171717;
    border-right: 1px solid #404040;
    transition: width 300ms ease;
    overflow: hidden;
    width: 16rem;
}

.sidebar.sidebar-collapsed {
    width: 4rem;
}

/* Hide labels when sidebar is collapsed */
.sidebar.sidebar-collapsed .sidebar-label {
    display: none !important;
}

/* Toggle button icons */
.sidebar.sidebar-collapsed .sidebar-collapse-icon {
    display: none !important;
}

.sidebar.sidebar-collapsed .sidebar-expand-icon {
    display: block !important;
}

.sidebar .sidebar-expand-icon {
    display: none;
}

/* Brand logo switching */
.sidebar .sidebar-short-brand {
    display: none !important;
}

.sidebar.sidebar-collapsed .sidebar-full-brand {
    display: none !important;
}

.sidebar.sidebar-collapsed .sidebar-short-brand {
    display: block !important;
}

/* Collapsed header - center the O logo */
.sidebar.sidebar-collapsed header {
    justify-content: center;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

/* Collapsed section and footer - remove horizontal padding */
.sidebar.sidebar-collapsed section,
.sidebar.sidebar-collapsed footer {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

/* Collapsed nav links - center icons */
.sidebar.sidebar-collapsed nav a {
    justify-content: center;
    padding: 0.625rem 0.5rem;
}

.sidebar nav {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sidebar header {
    border-color: #404040;
}

.sidebar footer {
    border-color: #404040;
}

/* Sidebar navigation links */
.sidebar a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    transition: all 150ms ease;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar li {
    margin-bottom: 0.25rem;
}

/* ============================================
   OATHS Form Component Styles
   ============================================ */

.form {
    display: grid;
    gap: 1rem;
}

.form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.375rem;
}

.form input,
.form textarea,
.form select {
    width: 100%;
    border-radius: 0.25rem;
    border: 1px solid #404040;
    background-color: #262626;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    color: #ffffff;
    transition: all 150ms ease;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.2);
}

.form input::placeholder,
.form textarea::placeholder {
    color: #737373;
}

/* ============================================
   OATHS Dialog/Modal Component Styles
   ============================================ */

.dialog-backdrop {
    background-color: rgba(0, 0, 0, 0.7);
}

.dialog {
    border-radius: 0.5rem;
    border: 1px solid #404040;
    background-color: #171717;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.dialog>div {
    position: relative;
    padding: 1.5rem;
}

.dialog header {
    margin-bottom: 1rem;
}

.dialog header h2 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
}

.dialog section {
    color: #a3a3a3;
}

.dialog footer {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #404040;
}

/* ============================================
   Custom scrollbar for dark theme
   ============================================ */

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #404040;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #525252;
}

/* ============================================
   OATHS specific overrides
   ============================================ */

/* Ensure monospace fonts throughout */
.font-mono,
code,
pre,
kbd {
    font-family: 'JetBrains Mono', 'Menlo', 'Monaco', 'Consolas', monospace;
}

/* Override button focus ring to use orange */
.btn:focus-visible,
.btn-secondary:focus-visible,
.btn-destructive:focus-visible,
.btn-outline:focus-visible,
.btn-ghost:focus-visible {
    outline: 2px solid rgba(249, 115, 22, 0.5);
    outline-offset: 2px;
}

/* Interactive card with more prominent hover */
.card-interactive:hover {
    border-color: rgba(249, 115, 22, 0.5);
    background-color: rgba(38, 38, 38, 0.5);
}

/* Input focus styling */
input:focus,
textarea:focus,
select:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.2);
}

/* ============================================
   Drawer styles
   ============================================ */

.drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 40;
    background-color: rgba(0, 0, 0, 0.5);
}

.drawer-panel {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 50;
    width: 100%;
    max-width: 28rem;
    border-left: 1px solid #404040;
    background-color: #171717;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.drawer-header {
    display: flex;
    height: 4rem;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #404040;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.drawer-content {
    overflow-y: auto;
    padding: 1.5rem;
}

/* ============================================
   Command palette styles
   ============================================ */

.command-palette-backdrop {
    position: fixed;
    inset: 0;
    z-index: 50;
    background-color: rgba(0, 0, 0, 0.7);
}

.command-palette {
    position: relative;
    width: 100%;
    max-width: 36rem;
    border-radius: 0.25rem;
    border: 1px solid #404040;
    background-color: #171717;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.command-palette-input {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #404040;
    background-color: transparent;
    padding: 1rem;
    font-size: 1.125rem;
    color: #ffffff;
}

.command-palette-input::placeholder {
    color: #737373;
}

.command-palette-results {
    max-height: 24rem;
    overflow-y: auto;
    padding: 0.5rem;
}

.command-palette-item {
    display: flex;
    cursor: pointer;
    align-items: center;
    gap: 0.75rem;
    border-radius: 0.25rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    color: #a3a3a3;
}

.command-palette-item:hover {
    background-color: #262626;
    color: #ffffff;
}

/* Fingerprint display */
.fingerprint {
    font-family: 'JetBrains Mono', 'Menlo', 'Monaco', 'Consolas', monospace;
    font-size: 0.75rem;
    line-height: 1rem;
    letter-spacing: -0.025em;
    color: #a3a3a3;
}

/* ============================================
   Utility Classes for Theme Colors
   ============================================ */

.text-primary {
    color: #f97316 !important;
}

.text-muted-foreground {
    color: #a3a3a3 !important;
}

.text-foreground {
    color: #ffffff !important;
}

.text-destructive {
    color: #ef4444 !important;
}

.bg-primary {
    background-color: #f97316 !important;
}

.bg-secondary {
    background-color: #262626 !important;
}

.bg-background {
    background-color: #000000 !important;
}

.bg-card {
    background-color: #171717 !important;
}

.border-primary {
    border-color: #f97316 !important;
}

/* ============================================
   Main Layout Styles
   ============================================ */

/* Flex layout for sidebar + main */
body>.sidebar~main,
body>aside~main {
    margin-left: 16rem;
}

/* Full height layout */
.h-full {
    height: 100%;
}

.min-h-full {
    min-height: 100%;
}

/* ============================================
   Animations
   ============================================ */

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

/* ============================================
   OATHS Dashboard Chart Styles (CSS-only)
   ============================================ */

.chart-container {
    height: 12rem;
    padding: 1rem 0;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 100%;
    gap: 0.5rem;
}

.chart-bar-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    position: relative;
}

.chart-bar {
    width: 100%;
    min-height: 4px;
    background: linear-gradient(180deg, #f97316 0%, #ea580c 100%);
    border-radius: 0.25rem 0.25rem 0 0;
    position: relative;
    transition: height 0.3s ease, background 0.2s ease;
    margin-top: auto;
}

.chart-bar:hover {
    background: linear-gradient(180deg, #fb923c 0%, #f97316 100%);
}

.chart-value {
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.625rem;
    font-weight: 500;
    color: #a3a3a3;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.chart-bar:hover .chart-value {
    opacity: 1;
}

.chart-label {
    position: absolute;
    bottom: -1.5rem;
    font-size: 0.625rem;
    font-weight: 500;
    color: #737373;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Dashboard stats cards */
.stat-card {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1.25rem;
    border-radius: 0.25rem;
    border: 1px solid #404040;
    background-color: #171717;
    transition: border-color 0.15s ease;
}

.stat-card:hover {
    border-color: #525252;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #737373;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Activity feed styles */
.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.activity-icon {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
}

.activity-icon.read {
    background-color: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.activity-icon.write {
    background-color: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.activity-icon.create {
    background-color: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

.activity-icon.delete {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.activity-icon.login {
    background-color: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

.activity-description {
    font-size: 0.875rem;
    color: #ffffff;
}

.activity-time {
    font-size: 0.75rem;
    color: #737373;
}

/* Quick stats styling */
.quick-stat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #262626;
}

.quick-stat-row:last-child {
    border-bottom: none;
}

.quick-stat-indicator {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
}

.quick-stat-indicator.read {
    background-color: #22c55e;
}

.quick-stat-indicator.write {
    background-color: #f97316;
}