        .server-health-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
        }
        .server-health-table th {
            background: #f9fafb;
            padding: 12px 8px;
            text-align: left;
            font-weight: 600;
            color: #374151;
            border-bottom: 2px solid #e5e7eb;
            white-space: nowrap;
        }
        .server-health-table td {
            padding: 12px 8px;
            border-bottom: 1px solid #e5e7eb;
            vertical-align: middle;
        }
        .server-health-table tr:hover {
            background: #f9fafb;
        }
        .metric-bar {
            width: 100%;
            height: 24px;
            background: #e5e7eb;
            border-radius: 4px;
            overflow: hidden;
            position: relative;
            min-width: 80px;
        }
        .metric-bar-fill {
            height: 100%;
            border-radius: 4px;
            transition: width 0.3s ease;
        }
        .metric-bar-text {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 600;
            color: #374151;
            text-shadow: 0 0 2px white, 0 0 2px white;
        }
        .metric-bar-fill.green { background: #10b981; }
        .metric-bar-fill.yellow { background: #f59e0b; }
        .metric-bar-fill.red { background: #ef4444; }
        .metric-value {
            font-family: monospace;
            font-size: 13px;
            color: #374151;
            white-space: nowrap;
        }
        .server-status-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 500;
        }
        .server-status-badge.available {
            background: #d1fae5;
            color: #059669;
        }
        .server-status-badge.overloaded {
            background: #fee2e2;
            color: #dc2626;
        }
        .server-status-badge.unavailable {
            background: #f3f4f6;
            color: #6b7280;
        }
        .queue-display {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .queue-count {
            font-weight: 600;
            font-size: 15px;
        }
        .queue-count.normal { color: #059669; }
        .queue-count.warning { color: #d97706; }
        .queue-count.full { color: #dc2626; }

        /* Cron and Minute Preset Styles */
        .minute-preset.active {
            background: #6366f1;
            color: white;
        }
        #cron-validation-result.valid {
            background: #d1fae5;
            border-left: 3px solid #10b981;
        }
        #cron-validation-result.invalid {
            background: #fee2e2;
            border-left: 3px solid #ef4444;
        }
        .schedule-card {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 16px;
            transition: box-shadow 0.2s;
            position: relative;
        }
        .schedule-checkbox {
            position: absolute;
            top: 12px;
            left: 12px;
            width: 18px;
            height: 18px;
            cursor: pointer;
        }
        .schedule-card:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        .schedule-card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 16px;
        }
        .schedule-card-title {
            font-weight: 600;
            font-size: 16px;
            color: #111827;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .schedule-toggle {
            width: 44px;
            height: 24px;
            background: #e5e7eb;
            border-radius: 12px;
            cursor: pointer;
            position: relative;
            transition: background 0.2s;
        }
        .schedule-toggle.active {
            background: #10b981;
        }
        .schedule-toggle::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background: white;
            border-radius: 50%;
            top: 2px;
            left: 2px;
            transition: left 0.2s;
            box-shadow: 0 1px 3px rgba(0,0,0,0.2);
        }
        .schedule-toggle.active::after {
            left: 22px;
        }
        .schedule-info {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            font-size: 13px;
            color: #6b7280;
        }
        .schedule-info-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .schedule-info-item .icon {
            font-size: 14px;
        }
        .schedule-stats {
            display: flex;
            gap: 16px;
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px solid #f3f4f6;
            font-size: 13px;
        }
        .schedule-stat {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .schedule-stat.success { color: #059669; }
        .schedule-stat.failed { color: #dc2626; }
        .schedule-stat.total { color: #6b7280; }
        .schedule-actions {
            display: flex;
            gap: 8px;
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid #f3f4f6;
        }
        .schedule-jobs-preview {
            margin-top: 12px;
            display: none;
        }
        .schedule-jobs-preview.expanded {
            display: block;
        }
        .schedule-job-mini {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 12px;
            background: #f9fafb;
            border-radius: 6px;
            margin-bottom: 6px;
            font-size: 13px;
        }
        .schedule-job-mini:last-child {
            margin-bottom: 0;
        }

        .run-type-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 500;
        }
        .run-type-manual {
            background: #dbeafe;
            color: #1d4ed8;
        }
        .run-type-scheduled {
            background: #fef3c7;
            color: #d97706;
        }

        .server-chip {
            display: inline-block;
            padding: 2px 8px;
            background: #f3f4f6;
            border-radius: 4px;
            font-size: 12px;
            margin-right: 4px;
            margin-bottom: 4px;
        }

        .form-step {
            display: none;
        }
        .form-step.active {
            display: block;
        }
        .step-indicator {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: 24px;
        }
        .step-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #e5e7eb;
        }
        .step-dot.active {
            background: #6366f1;
        }
        .step-dot.completed {
            background: #10b981;
        }

        .multi-select-container {
            border: 1px solid #d1d5db;
            border-radius: 6px;
            padding: 8px;
            max-height: 200px;
            overflow-y: auto;
        }
        .multi-select-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 8px;
            border-radius: 4px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .multi-select-item:hover {
            background: #f3f4f6;
        }
        .multi-select-item.selected {
            background: #eef2ff;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: #f8f9fa; color: #1f2937; display: flex; min-height: 100vh; }
        
        .sidebar { width: 280px; background: #ffffff; padding: 24px; border-right: 1px solid #e5e7eb; box-shadow: 2px 0 8px rgba(0, 0, 0, 0.05); position: fixed; height: 100vh; overflow-y: auto; }
        .sidebar h2 { color: #6366f1; font-size: 20px; margin-bottom: 24px; font-weight: 600; }
        .dag-item { padding: 14px 18px; margin-bottom: 10px; background: #f9fafb; border-radius: 8px; cursor: pointer; transition: all 0.2s ease; border: 1px solid transparent; font-size: 14px; color: #4b5563; }
        .dag-item:hover { background: #f3f4f6; border-color: #d1d5db; }
        .dag-item.active { background: #6366f1; color: #ffffff; border-color: #6366f1; box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3); }
        
        .main-content { flex: 1; overflow-y: auto; padding: 40px; background: #f8f9fa; margin-left: 280px; }
        .page-header { margin-bottom: 32px; }
        .page-header h1 { color: #111827; font-size: 32px; margin-bottom: 8px; font-weight: 700; }
        .page-header p { color: #6b7280; font-size: 15px; }
        
        .section { background: #ffffff; border-radius: 12px; padding: 28px; margin-bottom: 24px; border: 1px solid #e5e7eb; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); }
        .section-title { font-size: 18px; margin-bottom: 20px; color: #111827; font-weight: 600; }
        
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; margin-bottom: 8px; font-weight: 500; font-size: 14px; color: #374151; }
        .form-group input[type="text"], .form-group input[type="date"], .form-group input[type="datetime-local"], .form-group input[type="number"], .form-group select, .form-group textarea {
            width: 100%; padding: 10px 12px; border: 1px solid #d1d5db; border-radius: 6px; font-size: 14px; transition: border-color 0.2s;
        }
        .form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: #6366f1; }
        .form-group textarea { min-height: 120px; resize: vertical; font-family: monospace; }
        
        .btn { padding: 10px 20px; border: none; border-radius: 6px; font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.2s; }
        .btn-primary { background: #6366f1; color: white; }
        .btn-primary:hover { background: #4f46e5; }
        .btn-secondary { background: #f3f4f6; color: #374151; }
        .btn-secondary:hover { background: #e5e7eb; }
        .btn-success { background: #10b981; color: white; }
        .btn-success:hover { background: #059669; }
        .btn-danger { background: #ef4444; color: white; }
        .btn-danger:hover { background: #dc2626; }
        .btn-small { padding: 6px 12px; font-size: 13px; }
        .btn:disabled { opacity: 0.5; cursor: not-allowed; }
        
        .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
        .grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
        .grid-4 { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 20px; }
        
        .project-section { border: 2px solid #e5e7eb; border-radius: 8px; padding: 20px; margin-bottom: 20px; position: relative; }
        .project-section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
        .project-section-title { font-weight: 600; color: #1f2937; font-size: 16px; }
        .remove-project-btn { background: #fee2e2; color: #dc2626; border: none; padding: 6px 12px; border-radius: 6px; cursor: pointer; font-size: 13px; }
        .remove-project-btn:hover { background: #fecaca; }
        
        .autocomplete-container { position: relative; }
        .autocomplete-dropdown { position: absolute; top: 100%; left: 0; right: 0; background: white; border: 1px solid #d1d5db; border-top: none; border-radius: 0 0 6px 6px; max-height: 200px; overflow-y: auto; z-index: 1000; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
        .autocomplete-item { padding: 10px 12px; cursor: pointer; font-size: 14px; }
        .autocomplete-item:hover { background: #f3f4f6; }
        .autocomplete-item.favorite { background: #fef3c7; border-left: 3px solid #f59e0b; }
        
        .object-table { width: 100%; border-collapse: collapse; margin-top: 12px; }
        .object-table th, .object-table td { padding: 10px; text-align: left; border-bottom: 1px solid #e5e7eb; font-size: 13px; }
        .object-table th { background: #f9fafb; font-weight: 600; color: #374151; }
        .object-table tr:hover { background: #f9fafb; }
        
        .batch-config { background: #eff6ff; border-left: 3px solid #3b82f6; padding: 16px; border-radius: 6px; margin-top: 12px; }
        .hidden { display: none; }
        
        .status-badge { display: inline-block; padding: 4px 10px; border-radius: 12px; font-size: 12px; font-weight: 500; }
        .status-pending { background: #fef3c7; color: #d97706; border: 1px solid #fcd34d; }
        .status-scheduled { background: #ddd6fe; color: #7c3aed; border: 1px solid #c4b5fd; }
        .status-running { background: #dbeafe; color: #2563eb; border: 1px solid #93c5fd; }
        .status-completed { background: #d1fae5; color: #059669; border: 1px solid #6ee7b7; }
        .status-completed-errors { background: #fef3c7; color: #b45309; border: 1px solid #fcd34d; }
        .status-failed { background: #fee2e2; color: #dc2626; border: 1px solid #fca5a5; }
        .status-cancelled { background: #f3f4f6; color: #9ca3af; border: 1px solid #d1d5db; }
        
        .filter-bar { display: flex; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; align-items: center; }
        .filter-bar input, .filter-bar select { flex: 1; min-width: 200px; }
        
        .stage-indicator { display: flex; align-items: center; gap: 8px; margin: 12px 0; font-size: 13px; }
        .stage-step { display: flex; align-items: center; gap: 6px; }
        .stage-icon { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: bold; }
        .stage-icon.completed { background: #10b981; color: white; }
        .stage-icon.running { background: #3b82f6; color: white; }
        .stage-icon.pending { background: #e5e7eb; color: #6b7280; }
        .stage-icon.failed { background: #dc2626; color: white; }
        .stage-icon.na { background: #f3f4f6; color: #9ca3af; }
        .stage-arrow { color: #d1d5db; }
        
        .filter-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
        .filter-chip { padding: 6px 12px; background: #f3f4f6; border: 1px solid #d1d5db; border-radius: 16px; font-size: 13px; cursor: pointer; transition: all 0.2s; }
        .filter-chip.active { background: #6366f1; color: white; border-color: #6366f1; }
        .filter-chip:hover { background: #e5e7eb; }
        .filter-chip.active:hover { background: #4f46e5; }
        
        .info-banner { background: #fef3c7; border-left: 4px solid #f59e0b; padding: 16px; border-radius: 6px; margin-bottom: 20px; font-size: 14px; }
        
        .toast { position: fixed; top: 20px; right: 20px; background: white; padding: 16px 24px; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); z-index: 10000; display: flex; align-items: center; gap: 12px; min-width: 300px; animation: slideIn 0.3s ease; }
        .toast.success { border-left: 4px solid #10b981; }
        .toast.error { border-left: 4px solid #ef4444; }
        .toast.info { border-left: 4px solid #3b82f6; }
        @keyframes slideIn { from { transform: translateX(400px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
        
        .job-card { background: white; border: 1px solid #e5e7eb; border-radius: 8px; padding: 16px; margin-bottom: 12px; }
        .job-card-header { display: flex; justify-content: space-between; align-items: start; margin-bottom: 12px; }
        .job-card-title { font-weight: 600; font-size: 15px; color: #111827; }
        .job-card-meta { font-size: 13px; color: #6b7280; margin-top: 4px; }
        .job-card-actions { display: flex; gap: 8px; }
        
        .bulk-actions {
            background: linear-gradient(to right, #eef2ff, #f0fdf4);
            border: 1px solid #c7d2fe;
            border-radius: 8px;
            padding: 12px 16px;
            margin-bottom: 16px;
            display: none;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }
        .bulk-actions.active { display: flex; }
        .bulk-actions-text { font-size: 14px; color: #374151; font-weight: 500; }
        
        .btn-warning {
            background: #f59e0b;
            color: white;
            border: none;
        }
        .btn-warning:hover {
            background: #d97706;
        }

        .template-item { background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 6px; padding: 12px; margin-bottom: 8px; display: flex; justify-content: space-between; align-items: center; }
        .template-item:hover { background: #f3f4f6; }
        
        .server-bar { background: #e5e7eb; height: 24px; border-radius: 4px; position: relative; overflow: hidden; margin-top: 8px; }
        .server-bar-fill { background: #6366f1; height: 100%; transition: width 0.3s ease; display: flex; align-items: center; justify-content: center; color: white; font-size: 11px; font-weight: 600; }
        .server-bar-fill.high { background: #f59e0b; }
        .server-bar-fill.full { background: #ef4444; }
        
        .modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 9999; justify-content: center; align-items: center; }
        .modal.active { display: flex; }
        .modal-content { background: white; border-radius: 12px; padding: 24px; max-width: 500px; width: 90%; max-height: 80vh; overflow-y: auto; }
        .modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
        .modal-title { font-size: 20px; font-weight: 600; color: #111827; }
        .modal-close { background: none; border: none; font-size: 24px; cursor: pointer; color: #6b7280; }
        
        .validation-error { color: #ef4444; font-size: 13px; margin-top: 4px; }
        
        .checkbox-wrapper { display: flex; align-items: center; gap: 8px; }
        .checkbox-wrapper input[type="checkbox"] { width: 18px; height: 18px; cursor: pointer; }
        
        .favorite-star { cursor: pointer; color: #d1d5db; transition: color 0.2s; }
        .favorite-star:hover { color: #f59e0b; }
        .favorite-star.active { color: #f59e0b; }

        .retry-chain { margin-top: 8px; padding: 8px 12px; background: #f9fafb; border-radius: 6px; font-size: 13px; }
        .retry-chain-toggle { cursor: pointer; color: #6366f1; font-weight: 500; display: flex; align-items: center; gap: 6px; }
        .retry-chain-toggle:hover { color: #4f46e5; }
        .retry-chain-list { margin-top: 8px; padding-left: 16px; border-left: 2px solid #e5e7eb; display: none; }
        .retry-chain-list.expanded { display: block; }
        .retry-attempt { padding: 6px 0; border-bottom: 1px solid #f3f4f6; display: flex; justify-content: space-between; align-items: center; }
        .retry-attempt:last-child { border-bottom: none; }
        .retry-attempt-status { font-size: 12px; }
        
        .pwr-object-group { border: 1px solid #e5e7eb; border-radius: 8px; padding: 16px; margin-bottom: 16px; background: #fafafa; }
        .pwr-object-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
        .pwr-object-title { font-weight: 600; color: #111827; font-size: 15px; }
        .pwr-object-count { font-size: 13px; color: #6b7280; }
        .pwr-urls-textarea { width: 100%; min-height: 100px; font-family: monospace; font-size: 12px; padding: 10px; border: 1px solid #d1d5db; border-radius: 6px; resize: vertical; }
        .pwr-batch-config { display: flex; gap: 12px; align-items: center; margin-top: 12px; flex-wrap: wrap; }
        .pwr-job-preview { margin-top: 8px; padding: 8px 12px; background: #eff6ff; border-radius: 6px; font-size: 13px; color: #1e40af; }
        
        .status-count { font-size: 11px; background: rgba(0,0,0,0.1); padding: 2px 6px; border-radius: 10px; margin-left: 4px; }
        .filter-chip.active .status-count { background: rgba(255,255,255,0.3); }       
        
        .log-summary {
            background: #f0fdf4;
            border: 1px solid #86efac;
            border-radius: 8px;
            padding: 16px;
            margin-bottom: 16px;
        }
        .log-summary.has-error {
            background: #fef2f2;
            border-color: #fca5a5;
        }
        .log-summary h4 {
            margin: 0 0 12px 0;
            font-size: 14px;
            color: #166534;
        }
        .log-summary.has-error h4 {
            color: #991b1b;
        }
        .summary-table {
            width: 100%;
            border-collapse: collapse;
        }
        .summary-table td {
            padding: 6px 12px;
            border-bottom: 1px solid #e5e7eb;
        }
        .summary-table tr:last-child td {
            border-bottom: none;
        }
        .summary-table td:first-child {
            font-weight: 600;
            width: 140px;
            color: #374151;
        }
        .error-text {
            color: #dc2626 !important;
            font-weight: 600;
        }
        .success-text {
            color: #16a34a;
            font-weight: 600;
        }
        .log-errors {
            background: #fef2f2;
            border: 1px solid #fca5a5;
            border-radius: 8px;
            padding: 16px;
            margin-bottom: 16px;
        }
        .log-errors h4 {
            margin: 0 0 12px 0;
            color: #991b1b;
            font-size: 14px;
        }
        .log-errors pre {
            background: #fff;
            padding: 12px;
            border-radius: 4px;
            overflow-x: auto;
            white-space: pre-wrap;
            word-wrap: break-word;
            font-size: 12px;
            color: #991b1b;
            margin: 0;
        }
        .log-full {
            margin-bottom: 16px;
        }
        .log-full h4 {
            margin: 0 0 12px 0;
            font-size: 14px;
            color: #374151;
        }
        .log-full pre {
            background: #1f2937;
            color: #e5e7eb;
            padding: 16px;
            border-radius: 8px;
            overflow-x: auto;
            white-space: pre-wrap;
            word-wrap: break-word;
            max-height: 400px;
            overflow-y: auto;
            font-size: 12px;
            line-height: 1.6;
            margin: 0;
            font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
        }
        .log-loading {
            text-align: center;
            padding: 40px;
            color: #6b7280;
        }
        .log-error {
            background: #fef2f2;
            border: 1px solid #fca5a5;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            color: #991b1b;
        }
        .log-tabs {
            display: flex;
            gap: 0;
            border-bottom: 2px solid #e5e7eb;
            margin-bottom: 12px;
        }
        .log-tab {
            padding: 8px 16px;
            cursor: pointer;
            font-size: 13px;
            font-weight: 500;
            color: #6b7280;
            border-bottom: 2px solid transparent;
            margin-bottom: -2px;
            transition: all 0.15s;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .log-tab:hover { color: #374151; background: #f9fafb; }
        .log-tab.active { color: #2563eb; border-bottom-color: #2563eb; }
        .log-tab .tab-status {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }
        .log-tab .tab-status.completed { background: #10b981; }
        .log-tab .tab-status.running { background: #3b82f6; animation: pulse-dot 1s infinite; }
        .log-tab .tab-status.failed { background: #ef4444; }
        .log-tab .tab-status.pending { background: #d1d5db; }
        @keyframes pulse-dot { 0%,100% { opacity:1; } 50% { opacity:0.4; } }
        .log-truncation-notice {
            background: #fffbeb;
            border: 1px solid #fde68a;
            border-radius: 6px;
            padding: 8px 12px;
            margin-bottom: 12px;
            font-size: 12px;
            color: #92400e;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .log-truncation-notice button {
            background: none;
            border: 1px solid #d97706;
            color: #d97706;
            padding: 3px 10px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 12px;
        }
        .log-truncation-notice button:hover { background: #fef3c7; }
        .failed-objects-box {
            margin-top: 8px;
            padding: 8px 12px;
            background: #fef2f2;
            border: 1px solid #fecaca;
            border-radius: 6px;
            font-size: 12px;
        }
        .failed-objects-box .fo-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: #991b1b;
            font-weight: 600;
            margin-bottom: 6px;
        }
        .failed-objects-box .fo-item {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 3px 0;
            color: #374151;
        }
        .failed-objects-box .fo-item input[type="checkbox"] { margin: 0; }
        .failed-objects-box .fo-error {
            color: #991b1b;
            font-size: 11px;
            margin-left: 22px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 600px;
        }
        .fo-actions { margin-top: 6px; display: flex; gap: 6px; align-items: center; }
        .server-change-inline {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .server-change-inline select {
            padding: 2px 6px;
            font-size: 12px;
            border: 1px solid #d1d5db;
            border-radius: 4px;
            background: white;
        }
        .server-change-inline button {
            padding: 2px 8px;
            font-size: 11px;
            border: 1px solid #3b82f6;
            background: #eff6ff;
            color: #2563eb;
            border-radius: 4px;
            cursor: pointer;
        }
        .server-change-inline button:hover { background: #dbeafe; }
