/* MK Parking Admin - Enterprise Command Center Components */

/* ==========================================
   BUTTONS - Operational Controls
   ========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--border-default);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--duration-fast);
    text-decoration: none;
    background: var(--surface-raised);
    color: var(--text-primary);
}

.btn:hover:not(:disabled) {
    background: var(--surface-overlay);
    border-color: var(--border-strong);
}

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

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

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

.btn-primary:hover:not(:disabled) {
    background: var(--accent-light);
    border-color: var(--accent-light);
}

.btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    border-color: var(--border-default);
}

.btn-secondary:hover:not(:disabled) {
    color: var(--text-primary);
    background: var(--surface-highlight);
}

.btn-success {
    background: var(--success);
    color: var(--white);
    border-color: var(--success);
}

.btn-success:hover:not(:disabled) {
    background: #16a34a;
    border-color: #16a34a;
}

.btn-danger {
    background: var(--danger);
    color: var(--white);
    border-color: var(--danger);
}

.btn-danger:hover:not(:disabled) {
    background: #dc2626;
    border-color: #dc2626;
}

.btn-ghost {
    background: transparent;
    border-color: transparent;
    color: var(--text-secondary);
}

.btn-ghost:hover:not(:disabled) {
    color: var(--text-primary);
    background: var(--surface-highlight);
}

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

.btn-large {
    padding: 12px 24px;
    font-size: 14px;
}

.btn-icon {
    width: 36px;
    height: 36px;
    padding: 0;
    background: var(--surface-raised);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-sm);
}

.btn-icon:hover:not(:disabled) {
    background: var(--surface-overlay);
    border-color: var(--border-strong);
}

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

.notification-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--danger);
    color: var(--white);
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 5px;
    min-width: 16px;
    text-align: center;
    border-radius: var(--radius-xs);
}

/* ==========================================
   CARDS - Data Panels
   ========================================== */

.card {
    background: var(--surface-raised);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-primary);
    opacity: 0;
    transition: opacity var(--duration-fast);
}

.card:hover::before {
    opacity: 1;
}

.card-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-default);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--surface-highlight);
}

.card-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.card-body {
    padding: 20px;
}

.card-footer {
    padding: 14px 20px;
    border-top: 1px solid var(--border-default);
    background: var(--surface-highlight);
}

/* ==========================================
   STAT CARDS - Metrics Display
   ========================================== */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card {
    background: var(--surface-raised);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    transition: all var(--duration-fast);
}

.stat-card:hover {
    border-color: var(--border-strong);
    background: var(--surface-overlay);
}

.stat-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-primary);
    border-radius: var(--radius-xs) 0 0 var(--radius-xs);
    opacity: 0;
    transition: opacity var(--duration-fast);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.stat-icon.blue { background: var(--accent-glow); color: var(--accent-primary); }
.stat-icon.green { background: var(--success-muted); color: var(--success); }
.stat-icon.yellow { background: var(--warning-muted); color: var(--warning); }
.stat-icon.red { background: var(--danger-muted); color: var(--danger); }
.stat-icon.purple { background: rgba(139, 92, 246, 0.15); color: #8b5cf6; }
.stat-icon.cyan { background: var(--info-muted); color: var(--info); }
.stat-icon.gold { background: var(--warning-muted); color: var(--warning); }

.stat-content {
    flex: 1;
    min-width: 0;
}

.stat-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.stat-value {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.stat-change {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 6px;
    border-radius: var(--radius-xs);
}

.stat-change.positive {
    color: var(--success);
    background: var(--success-muted);
}

.stat-change.negative {
    color: var(--danger);
    background: var(--danger-muted);
}

/* ==========================================
   TABLES - Data Grid
   ========================================== */

.table-container {
    overflow-x: auto;
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    background: var(--surface-raised);
}

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

.data-table th,
.data-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-subtle);
}

.data-table th {
    background: var(--surface-highlight);
    color: var(--text-secondary);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
    position: sticky;
    top: 0;
}

.data-table tbody tr {
    transition: background var(--duration-fast);
}

.data-table tbody tr:hover {
    background: var(--surface-highlight);
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

.data-table td {
    font-size: 13px;
    color: var(--text-primary);
}

.data-table .mono {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--text-secondary);
}

/* Row selection */
.data-table tbody tr.selected {
    background: var(--accent-glow);
    border-left: 2px solid var(--accent-primary);
}

/* ==========================================
   FORMS - Input Controls
   ========================================== */

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

.form-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 10px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    border: 1px solid var(--border-default);
    border-radius: var(--radius-sm);
    background: var(--slate-950);
    color: var(--text-primary);
    transition: all var(--duration-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

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

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.form-hint {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}

.form-error {
    font-size: 11px;
    color: var(--danger);
    margin-top: 4px;
    font-weight: 500;
}

/* ==========================================
   BADGES - Status Indicators
   ========================================== */

.badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    border-radius: var(--radius-xs);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.badge-success {
    background: var(--success-muted);
    color: var(--success);
}

.badge-warning {
    background: var(--warning-muted);
    color: var(--warning);
}

.badge-danger {
    background: var(--danger-muted);
    color: var(--danger);
}

.badge-info {
    background: var(--info-muted);
    color: var(--info);
}

.badge-secondary {
    background: var(--surface-highlight);
    color: var(--text-secondary);
}

.badge-primary {
    background: var(--accent-glow);
    color: var(--accent-primary);
}

/* ==========================================
   PAGINATION
   ========================================== */

.pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-top: 1px solid var(--border-default);
    margin-top: 20px;
}

.pagination-info {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-muted);
}

.pagination-controls {
    display: flex;
    gap: 4px;
}

.pagination-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-default);
    border-radius: var(--radius-sm);
    background: var(--surface-raised);
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--duration-fast);
    color: var(--text-secondary);
}

.pagination-btn:hover:not(:disabled) {
    background: var(--surface-overlay);
    border-color: var(--border-strong);
    color: var(--text-primary);
}

.pagination-btn.active {
    background: var(--accent-primary);
    color: var(--white);
    border-color: var(--accent-primary);
}

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

/* ==========================================
   MODAL - Dialog Overlay
   ========================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 24px;
}

.modal-content {
    background: var(--surface-raised);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: modal-enter 0.2s var(--ease-out);
}

@keyframes modal-enter {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-default);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--surface-highlight);
}

.modal-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.modal-close {
    width: 28px;
    height: 28px;
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-fast);
}

.modal-close:hover {
    background: var(--surface-overlay);
    border-color: var(--border-default);
    color: var(--text-primary);
}

.modal-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.modal-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--border-default);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    background: var(--surface-highlight);
}

/* ==========================================
   ALERTS - System Messages
   ========================================== */

.alert {
    padding: 12px 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: var(--radius-sm);
    border-left: 3px solid;
    font-size: 13px;
}

.alert-success {
    background: var(--success-muted);
    border-color: var(--success);
    color: var(--success);
}

.alert-warning {
    background: var(--warning-muted);
    border-color: var(--warning);
    color: var(--warning);
}

.alert-danger {
    background: var(--danger-muted);
    border-color: var(--danger);
    color: var(--danger);
}

.alert-info {
    background: var(--info-muted);
    border-color: var(--info);
    color: var(--info);
}

/* ==========================================
   SEARCH BAR
   ========================================== */

.search-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.search-input-wrapper {
    flex: 1;
    position: relative;
}

.search-input-wrapper .form-input {
    padding-left: 40px;
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 16px;
}

/* ==========================================
   EMPTY STATE
   ========================================== */

.empty-state {
    text-align: center;
    padding: 48px 24px;
    background: var(--surface-raised);
    border: 1px dashed var(--border-default);
    border-radius: var(--radius-md);
}

.empty-state-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.3;
}

.empty-state-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.empty-state-text {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================
   TOAST NOTIFICATIONS
   ========================================== */

.notification-container {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.notification-toast {
    padding: 12px 16px;
    background: var(--surface-raised);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: toast-enter 0.2s var(--ease-out);
    min-width: 280px;
    max-width: 380px;
    border-left: 3px solid;
}

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

.notification-toast.success { border-left-color: var(--success); }
.notification-toast.error { border-left-color: var(--danger); }
.notification-toast.warning { border-left-color: var(--warning); }
.notification-toast.info { border-left-color: var(--info); }

.notification-toast-icon {
    font-size: 18px;
}

.notification-toast-content {
    flex: 1;
}

.notification-toast-title {
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 2px;
    color: var(--text-primary);
}

.notification-toast-message {
    font-size: 12px;
    color: var(--text-secondary);
}

/* ==========================================
   TABS
   ========================================== */

.tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--border-default);
    margin-bottom: 20px;
}

.tab {
    padding: 10px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    cursor: pointer;
    transition: all var(--duration-fast);
}

.tab:hover {
    color: var(--text-secondary);
}

.tab.active {
    color: var(--accent-primary);
    border-bottom-color: var(--accent-primary);
}

/* ==========================================
   TOOLTIP
   ========================================== */

[data-tooltip] {
    position: relative;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    padding: 6px 10px;
    background: var(--slate-700);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-default);
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-fast);
    pointer-events: none;
    box-shadow: var(--shadow-md);
}

[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
}

.sidebar .nav-link[data-tooltip]::after {
    display: none;
}

/* ==========================================
   SKELETON LOADING
   ========================================== */

.skeleton {
    background: linear-gradient(
        90deg,
        var(--slate-800) 25%,
        var(--slate-700) 50%,
        var(--slate-800) 75%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--radius-sm);
}

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

.skeleton-text {
    height: 14px;
    margin-bottom: 8px;
}

.skeleton-title {
    height: 20px;
    width: 60%;
    margin-bottom: 12px;
}

.skeleton-avatar {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
}

/* ==========================================
   DIVIDER
   ========================================== */

.divider {
    height: 1px;
    background: var(--border-default);
    margin: 24px 0;
}

/* ==========================================
   PROGRESS BAR
   ========================================== */

.progress {
    height: 6px;
    background: var(--surface-overlay);
    border-radius: var(--radius-xs);
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--accent-primary);
    transition: width 0.4s var(--ease-out);
    border-radius: var(--radius-xs);
}

.progress-bar.success { background: var(--success); }
.progress-bar.warning { background: var(--warning); }
.progress-bar.danger { background: var(--danger); }

/* ==========================================
   ENTERPRISE DATA ELEMENTS
   ========================================== */

/* Data Highlight Box */
.data-highlight {
    padding: 16px;
    background: var(--surface-highlight);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--accent-primary);
}

/* Live Status Indicator */
.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

.status-dot.online {
    background: var(--success);
    box-shadow: 0 0 0 2px var(--success-muted);
}
.status-dot.offline {
    background: var(--slate-500);
}
.status-dot.warning {
    background: var(--warning);
    box-shadow: 0 0 0 2px var(--warning-muted);
}
.status-dot.error {
    background: var(--danger);
    box-shadow: 0 0 0 2px var(--danger-muted);
    animation: pulse 2s infinite;
}

/* Metric Change Indicator */
.metric-trend {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 500;
}

.metric-trend.up { color: var(--success); }
.metric-trend.down { color: var(--danger); }
.metric-trend.neutral { color: var(--text-muted); }

/* Action Link */
.action-link {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: color var(--duration-fast);
}

.action-link:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

/* Section Header */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-default);
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

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

/* Data Cell Variants */
.cell-currency {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    color: var(--text-primary);
}

.cell-currency.positive { color: var(--success); }
.cell-currency.negative { color: var(--danger); }

.cell-id {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-muted);
    background: var(--surface-highlight);
    padding: 2px 6px;
    border-radius: var(--radius-xs);
}

.cell-timestamp {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--text-secondary);
}

/* Quick Actions */
.quick-actions {
    display: flex;
    gap: 4px;
}

.quick-action-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--duration-fast);
}

.quick-action-btn:hover {
    background: var(--surface-overlay);
    border-color: var(--border-default);
    color: var(--text-primary);
}

.quick-action-btn.danger:hover {
    background: var(--danger-muted);
    border-color: rgba(239, 68, 68, 0.3);
    color: var(--danger);
}

/* Dashboard Quick Actions Grid */
.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.quick-actions-grid .quick-action-btn {
    width: 100%;
    height: auto;
    flex-direction: column;
    padding: 16px 8px;
    background: var(--surface-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-secondary);
}

.quick-actions-grid .quick-action-btn:hover {
    background: var(--surface-hover);
    border-color: var(--primary);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.quick-action-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.quick-action-label {
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 768px) {
    .quick-actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Filter Group */
.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--surface-raised);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-sm);
    font-size: 12px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--duration-fast);
}

.filter-chip:hover {
    border-color: var(--border-strong);
    color: var(--text-primary);
}

.filter-chip.active {
    background: var(--accent-glow);
    border-color: rgba(59, 130, 246, 0.3);
    color: var(--accent-primary);
}

/* Inline Code */
code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    background: var(--surface-highlight);
    padding: 2px 6px;
    border-radius: var(--radius-xs);
    color: var(--accent-light);
}
