/* PeopleSoft ERD Explorer - Modern CSS Stylesheet */

/* --- Custom Design System Variables --- */
:root {
    --bg-primary: #0b0f19;
    --bg-secondary: #111827;
    --bg-sidebar: rgba(17, 24, 39, 0.75);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-focus: #6366f1;
    
    --text-primary: #f9fafb;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    
    /* Semantic Colors */
    --color-primary: #4f46e5;
    --color-primary-hover: #6366f1;
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;
    
    /* Layout Variables */
    --header-height: 70px;
    --sidebar-width: 320px;
    --border-radius-sm: 6px;
    --border-radius-md: 10px;
    --border-radius-lg: 16px;
    
    /* Graph Visual Colors */
    --node-bg: #1e293b;
    --node-border: #3b82f6;
    --node-header-bg: #312e81;
    --node-text: #ffffff;
    
    /* Shadows & Effects */
    --box-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.2);
    --box-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --box-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
    --glass-blur: blur(12px);
}

/* --- Base Resets & Global --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- App Layout Layout --- */
.app-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
}

/* --- Header Styling --- */
.app-header {
    height: var(--header-height);
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    z-index: 10;
    box-shadow: var(--box-shadow-sm);
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    color: var(--color-primary-hover);
    width: 28px;
    height: 28px;
}

.logo-text h1 {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, #a5b4fc 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-text p {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* --- DB Connection Status Badge --- */
.db-status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.status-indicator.success { background-color: var(--color-success); box-shadow: 0 0 8px var(--color-success); }
.status-indicator.warning { background-color: var(--color-warning); box-shadow: 0 0 8px var(--color-warning); }
.status-indicator.danger { background-color: var(--color-danger); box-shadow: 0 0 8px var(--color-danger); }

/* --- Body Columns Layout --- */
.app-body {
    display: flex;
    flex: 1;
    height: calc(100vh - var(--header-height));
    overflow: hidden;
    position: relative;
}

/* --- Sidebar Styling (General) --- */
.sidebar {
    width: var(--sidebar-width);
    background-color: var(--bg-sidebar);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    z-index: 5;
    transition: transform 0.3s ease;
}

.sidebar-left {
    border-right: 1px solid var(--border-color);
}

.sidebar-right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    border-left: 1px solid var(--border-color);
    box-shadow: var(--box-shadow-lg);
    transform: translateX(100%);
    width: 360px;
    background-color: rgba(15, 23, 42, 0.95);
}

.sidebar-right.open {
    transform: translateX(0);
}

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

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

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

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

.section-title {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title svg {
    width: 16px;
    height: 16px;
    color: var(--color-primary-hover);
}

/* --- Form Fields & Controls --- */
.form-group {
    margin-bottom: 14px;
}

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

.form-row {
    display: flex;
    gap: 12px;
}

.col-4 { width: 33.33%; }
.col-6 { width: 50%; }
.col-8 { width: 66.66%; }

.form-control {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    padding: 8px 12px;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--border-focus);
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.15);
}

.form-divider {
    text-align: center;
    margin: 16px 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
}

.form-divider::before, .form-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--border-color);
}
.form-divider::before { left: 0; }
.form-divider::after { right: 0; }

/* --- Input Search Boxes --- */
.search-box {
    position: relative;
    margin-top: 8px;
}

.search-box input {
    width: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    padding: 12px 38px 12px 42px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

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

.search-box input:hover {
    border-color: rgba(99, 102, 241, 0.4);
    background-color: rgba(15, 23, 42, 0.8);
}

.search-box input:focus {
    outline: none;
    border-color: var(--border-focus);
    background-color: rgba(15, 23, 42, 0.95);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.25), inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.search-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    pointer-events: none;
    transition: color 0.25s ease;
}

.search-box input:focus + .search-input-icon {
    color: var(--color-primary-hover);
}

.clear-search-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.clear-search-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
}

/* --- Autocomplete Dropdown --- */
.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 100;
    box-shadow: var(--box-shadow-lg);
    margin-top: 8px;
    padding: 6px;
}

.search-result-item {
    padding: 10px 14px;
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    transition: all 0.2s ease;
    border-bottom: none;
}

.search-result-item:hover {
    background-color: rgba(99, 102, 241, 0.15);
}

.result-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.result-desc {
    font-size: 0.72rem;
    color: var(--text-secondary);
}

/* --- Active Workspace Table List --- */
.active-tables-container {
    flex: 1;
    overflow-y: auto;
    margin-top: 8px;
}

.active-tables-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.active-table-item {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    border-radius: var(--border-radius-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.active-table-item:hover {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: rgba(99, 102, 241, 0.3);
}

.table-item-info {
    display: flex;
    flex-direction: column;
}

.table-item-name {
    font-size: 0.8rem;
    font-weight: 600;
}

.table-item-parent {
    font-size: 0.68rem;
    color: var(--text-muted);
}

.active-table-actions {
    display: flex;
    gap: 4px;
}

.action-btn-small {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    transition: all 0.15s ease;
}
.action-btn-small:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
}
.action-btn-small.delete-btn:hover {
    color: var(--color-danger);
    background: rgba(239, 68, 68, 0.1);
}

.empty-list-msg {
    text-align: center;
    padding: 30px 10px;
    font-size: 0.78rem;
    color: var(--text-muted);
    border: 1px dashed var(--border-color);
    border-radius: var(--border-radius-sm);
}

.btn-clear {
    background: none;
    border: none;
    font-size: 0.72rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s ease;
}
.btn-clear:hover {
    color: var(--color-danger);
}

/* --- Buttons Styles --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background-color: var(--color-primary);
    color: #ffffff;
}
.btn-primary:hover {
    background-color: var(--color-primary-hover);
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.4);
}

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

.btn-block {
    display: flex;
    width: 100%;
}

.btn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

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

/* --- Canvas Dashboard Panel --- */
.canvas-panel {
    flex: 1;
    position: relative;
    background-color: var(--bg-primary);
    /* Blueprint dot pattern background */
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    overflow: hidden;
}

.cy-canvas {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Floating Toolbar */
.canvas-toolbar {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(17, 24, 39, 0.85);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    padding: 6px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 4;
    box-shadow: var(--box-shadow-md);
}

.toolbar-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 8px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.toolbar-btn svg {
    width: 16px;
    height: 16px;
}

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

.toolbar-btn.active {
    color: #ffffff;
    background-color: var(--color-primary);
}

.toolbar-divider {
    width: 1px;
    height: 20px;
    background-color: var(--border-color);
    margin: 0 6px;
}

.toolbar-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0 4px;
}

/* Floating Legend */
.canvas-legend {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(17, 24, 39, 0.85);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    padding: 10px 14px;
    border-radius: var(--border-radius-md);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 4;
    box-shadow: var(--box-shadow-md);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.legend-color {
    width: 24px;
    height: 2px;
    display: inline-block;
}

.parent-child-line { background-color: #3b82f6; }
.prompt-table-line { background-color: #ec4899; border-top: 1px dashed #ec4899; }
.key-join-line { background-color: #10b981; }

.legend-key-icon {
    font-size: 0.6rem;
    font-weight: 800;
    color: #f59e0b;
    border: 1px solid #f59e0b;
    border-radius: 3px;
    padding: 1px 3px;
    line-height: 1;
}

/* --- Right Sidebar Metadata Details --- */
.sidebar-details-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.pointer-icon {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
}

.details-table-header {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 14px;
    border-radius: var(--border-radius-md);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.details-table-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}

.details-table-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.details-table-meta {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.field-list-title {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.fields-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.field-row.is-key {
    background: rgba(245, 158, 11, 0.05);
    border-color: rgba(245, 158, 11, 0.2);
}

.field-info-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.field-key-badge {
    background: #f59e0b;
    color: #0f172a;
    font-size: 0.58rem;
    font-weight: 800;
    padding: 1px 4px;
    border-radius: 3px;
    line-height: 1.2;
}

.field-name-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
}

.field-info-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.field-type-badge {
    font-size: 0.68rem;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.field-prompt-badge {
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(236, 72, 153, 0.1);
    color: #f472b6;
    border: 1px solid rgba(236, 72, 153, 0.2);
    cursor: pointer;
    transition: all 0.2s ease;
}
.field-prompt-badge:hover {
    background: rgba(236, 72, 153, 0.2);
    transform: scale(1.05);
}

.close-sidebar-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    transition: all 0.15s ease;
}
.close-sidebar-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
}

/* --- Modal Overlays & Dialogs --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    width: 500px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-lg);
    overflow: hidden;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-lg {
    width: 800px;
}

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

.modal-header h2 {
    font-size: 1.15rem;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    display: flex;
    align-items: center;
}
.modal-close:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
}

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

.modal-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* --- Alerts and Warnings --- */
.alert {
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 0.82rem;
    margin-top: 16px;
    display: flex;
    align-items: center;
}

.alert-danger {
    background-color: rgba(239, 68, 68, 0.1);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.alert-success {
    background-color: rgba(16, 185, 129, 0.1);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* --- Code Snippet Viewer --- */
.code-container {
    position: relative;
    background-color: #030712;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 16px;
    margin-top: 10px;
    max-height: 400px;
    overflow-y: auto;
}

.code-container pre {
    margin: 0;
}

.code-container code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.8rem;
    color: #34d399;
    line-height: 1.5;
    white-space: pre-wrap;
}

.copy-code-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 6px 12px;
    font-size: 0.72rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}
.copy-code-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* --- Drag and Drop Overlay --- */
.drag-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px dashed var(--color-primary);
    margin: 10px;
    border-radius: var(--border-radius-lg);
    transition: all 0.25s ease;
    pointer-events: none; /* Let drag events pass through properly */
}

.drag-overlay-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: var(--text-primary);
    max-width: 400px;
    padding: 24px;
}

.drag-icon {
    width: 64px;
    height: 64px;
    color: var(--color-primary-hover);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0.8,0,1,1);
    }
    50% {
        transform: translateY(-10px);
        animation-timing-function: cubic-bezier(0,0,0.2,1);
    }
}

.drag-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #a5b4fc 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.drag-overlay p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* --- Additional status indicators --- */
.status-indicator.offline {
    background-color: #a855f7;
    box-shadow: 0 0 8px #a855f7;
}

