:root {
    /* Dark Mode (Default) - Softer dark */
    --bg-primary: #12182a;
    --bg-secondary: #1a2236;
    --bg-tertiary: #242d45;
    --accent-primary: #00d4ff;
    --accent-secondary: #ff8c5a;
    --text-primary: #e8eaf0;
    --text-secondary: #8b95a5;
    --success: #22c55e;
    --danger: #ef4444;
    --border: #2a3550;
    --shadow: rgba(0, 0, 0, 0.25);
}

[data-theme="light"] {
    /* Light Mode */
    --bg-primary: #f0f2f5;
    --bg-secondary: #ffffff;
    --bg-tertiary: #e8ecf0;
    --accent-primary: #0066cc;
    --accent-secondary: #e65c00;
    --text-primary: #1a1a2e;
    --text-secondary: #5a6370;
    --success: #22c55e;
    --danger: #ef4444;
    --border: #d0d7de;
    --shadow: rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Info Banner */
.info-banner {
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
    border-bottom: 1px solid var(--border);
    padding: 10px 20px;
}

.info-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
}

.info-icon {
    font-size: 16px;
}

.info-text {
    flex: 1;
}

/* Help Button */
.help-btn {
    font-size: 16px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.help-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

/* Info Banner - removed */
/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 40px;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-top: 2px solid var(--accent-primary);
    padding: 16px 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px var(--shadow);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    font-size: 13px;
    color: var(--text-secondary);
    flex: 1;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    height: 60px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left, .header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-center {
    display: flex;
    gap: 24px;
}

.logo {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.position-display {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
}

.position-label {
    color: var(--text-secondary);
}

.position-value {
    color: var(--accent-primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--accent-primary);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: #0055aa;
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--border);
}

.btn-small {
    padding: 4px 10px;
    font-size: 12px;
}

.btn-icon {
    padding: 8px;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    border-radius: 6px;
}

.btn-icon:hover {
    color: var(--text-primary);
    background: var(--bg-tertiary);
}

.btn-icon svg {
    width: 18px;
    height: 18px;
}

/* Main Content */
.main-content {
    display: flex;
    flex: 1;
    overflow: hidden;
    height: calc(100vh - 60px); /* Full height minus header */
}

body {
    padding-top: 0;
    min-height: 100vh;
}

/* Map Panel */
.map-panel {
    flex: 1;
    position: relative;
    min-height: 500px;
    padding-bottom: 50px;
}

#map {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: var(--bg-secondary);
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 16px;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.map-overlay.visible {
    opacity: 1;
}

/* Aircraft List */
.aircraft-list {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
}

/* Sidebar */
.sidebar {
    width: 400px;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.watchlist-section {
    border-bottom: 1px solid var(--border);
    max-height: 30%;
}

.aircraft-section {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.section-header h2 {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sort-select {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text-primary);
    padding: 4px 8px;
    font-size: 12px;
}

/* Watchlist */
.watchlist {
    padding: 12px;
    overflow-y: auto;
    max-height: 200px;
}

.watchlist-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: var(--bg-tertiary);
    border-radius: 8px;
    margin-bottom: 8px;
    border-left: 3px solid var(--accent-secondary);
    transition: all 0.2s;
}

.watchlist-item:hover {
    background: var(--bg-primary);
}

.watchlist-item .pattern-info {
    flex: 1;
}

.watchlist-item .pattern {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.watchlist-item .pattern-type {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--text-secondary);
    background: var(--bg-secondary);
    padding: 2px 6px;
    border-radius: 3px;
}

.watchlist-item .meta {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.watchlist-item .actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.watchlist-item .match-count {
    background: var(--accent-secondary);
    color: #fff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

/* Toggle Switch */
.toggle {
    position: relative;
    width: 36px;
    height: 20px;
}

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

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: 0.2s;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 2px;
    bottom: 2px;
    background-color: var(--text-secondary);
    border-radius: 50%;
    transition: 0.2s;
}

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

.toggle input:checked + .toggle-slider:before {
    transform: translateX(16px);
    background-color: var(--bg-primary);
}

/* Aircraft Card */
.aircraft-card {
    background: var(--bg-tertiary);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 10px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    cursor: pointer;
}

.aircraft-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

.aircraft-card.watchlisted {
    border-color: var(--danger);
    background: linear-gradient(135deg, var(--bg-tertiary), rgba(239, 68, 68, 0.1));
}

.aircraft-card.interesting {
    border-color: var(--accent-primary);
}

.aircraft-main {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.aircraft-type-badge {
    background: var(--accent-primary);
    color: var(--bg-primary);
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 6px;
    min-width: 56px;
    text-align: center;
}

.aircraft-info {
    flex: 1;
}

.aircraft-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px;
}

.aircraft-callsign {
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.aircraft-distance {
    font-size: 12px;
    color: var(--accent-primary);
    font-weight: 500;
}

.aircraft-origin {
    font-size: 12px;
    color: var(--text-secondary);
}

.aircraft-stats-row {
    display: flex;
    justify-content: space-between;
    background: var(--bg-primary);
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 10px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.stat-icon {
    font-size: 12px;
}

.stat-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-primary);
}

.aircraft-actions {
    display: flex;
    justify-content: flex-end;
}

.watch-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.watch-btn:hover {
    color: var(--accent-secondary);
    border-color: var(--accent-secondary);
}

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

/* Empty State */
.empty-state {
    text-align: center;
    color: var(--text-secondary);
    font-size: 13px;
    padding: 20px;
}

/* Settings Panel */
.settings-panel {
    position: fixed;
    top: 60px;
    right: 0;
    width: 300px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-top: none;
    z-index: 999;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.settings-panel.hidden {
    transform: translateX(100%);
}

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

.settings-header h3 {
    font-size: 14px;
}

.settings-body {
    padding: 16px;
}

.setting-item {
    margin-bottom: 16px;
}

.setting-item label {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.setting-item input[type="range"] {
    width: 100%;
    accent-color: var(--accent-primary);
}

.setting-item input[type="number"] {
    width: 100%;
    padding: 8px 12px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-primary);
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
}

.setting-item input[type="number"]:focus {
    outline: none;
    border-color: var(--accent-primary);
}

/* Modal */
.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;
    opacity: 1;
    transition: opacity 0.2s ease;
}

.modal.hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    transform: scale(1);
    transition: transform 0.2s ease;
}

.modal.hidden .modal-content {
    transform: scale(0.9);
}

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

.modal-header h3 {
    font-size: 16px;
}

.modal-body {
    padding: 16px;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding: 16px;
    border-top: 1px solid var(--border);
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-group input[type="text"],
.form-group select {
    width: 100%;
    padding: 10px 12px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 14px;
}

.form-group input[type="text"]:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.form-group input[type="checkbox"] {
    accent-color: var(--accent-primary);
}

/* Notifications */
.notification-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification {
    background: var(--bg-secondary);
    border: 1px solid var(--accent-secondary);
    border-left: 4px solid var(--accent-secondary);
    border-radius: 8px;
    padding: 12px 16px;
    min-width: 280px;
    max-width: 350px;
    animation: slideIn 0.3s ease;
    box-shadow: 0 4px 20px var(--shadow);
}

.notification.removing {
    animation: slideOut 0.3s ease forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

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

.notification-title {
    font-weight: 600;
    color: var(--accent-secondary);
    font-size: 14px;
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
    font-size: 18px;
    line-height: 1;
}

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

.notification-body {
    font-size: 13px;
    color: var(--text-secondary);
}

.notification-body strong {
    color: var(--accent-primary);
    font-family: 'JetBrains Mono', monospace;
}

/* Geolocation Banner */
.geolocation-banner {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border);
    padding: 8px 16px;
    text-align: center;
    font-size: 13px;
    z-index: 998;
    transition: transform 0.3s ease;
}

.geolocation-banner.hidden {
    transform: translateY(-100%);
}

.geolocation-banner.error {
    border-color: var(--danger);
    color: var(--danger);
}

.geolocation-banner.success {
    border-color: var(--success);
    color: var(--success);
}

/* Leaflet Custom Styles */
.leaflet-popup-content-wrapper {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.leaflet-popup-content {
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    margin: 12px;
}

.leaflet-popup-tip {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
}

.leaflet-container {
    background: var(--bg-primary);
}

/* Aircraft Marker */
.aircraft-marker {
    background: transparent !important;
    border: none !important;
}

.aircraft-marker svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.aircraft-marker:hover svg {
    transform: scale(1.3) !important;
}

/* User Position Marker */
.user-marker-container {
    background: transparent !important;
}

.user-marker {
    position: relative;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-marker-dot {
    width: 12px;
    height: 12px;
    background: var(--accent-primary);
    border: 2px solid #fff;
    border-radius: 50%;
    position: absolute;
    z-index: 3;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

.user-marker-ring {
    width: 24px;
    height: 24px;
    border: 2px solid var(--accent-primary);
    border-radius: 50%;
    position: absolute;
    opacity: 0.5;
}

.user-marker-pulse {
    width: 32px;
    height: 32px;
    background: var(--accent-primary);
    border-radius: 50%;
    position: absolute;
    opacity: 0;
    animation: userPulse 2s ease-out infinite;
}

@keyframes userPulse {
    0% {
        transform: scale(0.5);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Footer */
.app-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 10px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-secondary);
    z-index: 100;
}

.app-footer a {
    color: var(--accent-primary);
    text-decoration: none;
}

.app-footer a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Ensure html and body are full height */
    html, body {
        height: 100%;
        overflow: hidden;
    }
    
    /* Main content fills remaining space */
    .main-content {
        flex-direction: column;
        height: calc(100vh - 60px);
        overflow: hidden;
    }
    
    /* Sidebar becomes a bottom drawer on mobile */
    .sidebar {
        width: 100%;
        height: 40vh;
        border-left: none;
        border-top: 1px solid var(--border);
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 500;
        transition: height 0.3s ease;
        display: flex;
        flex-direction: column;
    }
    
    .sidebar.collapsed {
        height: 50px;
    }

    .sidebar.collapsed .aircraft-list,
    .sidebar.collapsed .watchlist-items {
        display: none;
    }
    
    .sidebar-toggle {
        display: flex;
    }
    
    /* Map takes full screen minus header */
    .map-panel {
        flex: 1;
        height: calc(100vh - 160px); /* viewport - header(60px) - footer approximation */
        min-height: 200px;
        padding-bottom: 0;
    }
    
    #map, .map-container {
        width: 100%;
        height: 100%;
        min-height: 200px;
    }
    
    /* Header adjustments */
    .header {
        padding: 12px 16px;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .header-left, .header-center, .header-right {
        gap: 8px;
    }
    
    .header-title {
        font-size: 15px;
    }
    
    .user-info {
        font-size: 11px;
    }
    
    /* Larger touch targets for mobile */
    .btn {
        min-height: 44px;
        min-width: 44px;
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .btn-icon {
        min-height: 44px;
        min-width: 44px;
        padding: 10px;
    }
    
    .btn-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .help-icon {
        width: 24px;
        height: 24px;
        font-size: 18px;
    }
    
    /* Aircraft items - larger for touch */
    .aircraft-item {
        padding: 14px 16px;
        min-height: 60px;
    }
    
    .aircraft-item .aircraft-type {
        font-size: 14px;
    }
    
    .aircraft-item .aircraft-details {
        font-size: 12px;
        gap: 6px;
    }
    
    .aircraft-distance {
        font-size: 12px;
    }
    
    /* Larger sort select for mobile */
    .sort-select {
        min-height: 40px;
        font-size: 13px;
        padding: 8px 12px;
    }
    
    /* Footer sits above sidebar when expanded */
    .app-footer {
        bottom: 40vh;
    }
    
    .sidebar:not(.collapsed) ~ .app-footer {
        bottom: 40vh;
    }
}

/* Aircraft Marker Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.marker-pulse {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Popup Styles */
.popup-content {
    min-width: 200px;
}

.popup-type {
    background: var(--accent-primary);
    color: var(--bg-primary);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 6px;
}

.popup-callsign {
    font-family: 'JetBrains Mono', monospace;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.popup-details {
    background: var(--bg-primary);
    border-radius: 6px;
    padding: 8px;
    margin-bottom: 10px;
}

.popup-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 12px;
}

.popup-label {
    color: var(--text-secondary);
}

.popup-value {
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-primary);
    font-weight: 500;
}

.popup-watch-btn {
    width: 100%;
    padding: 8px 12px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.popup-watch-btn:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.popup-watch-btn.active {
    background: var(--accent-secondary);
    color: #fff;
    border-color: var(--accent-secondary);
}

/* Help Modal Content */
.help-content {
    max-height: 60vh;
    overflow-y: auto;
}

.help-section {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.help-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.help-section h4 {
    font-size: 14px;
    color: var(--accent-primary);
    margin-bottom: 6px;
}

.help-section p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Leaflet Map Brightness */
.leaflet-layer {
    filter: brightness(1.1) contrast(1.05);
}

.leaflet-tile-pane {
    filter: brightness(1.1);
}

/* Body padding for fixed elements */
body {
    padding-top: 0;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}
