/* Sovereign Toolbox Design System (Sovereign CSS Core v1.2.0) */

:root {
    /* Color Tokens - Cyberpunk Dark Slate Palette */
    --bg-darker: #06090e;
    --bg-dark: #0a0f18;
    --bg-card: rgba(16, 24, 39, 0.6);
    --border-color: rgba(30, 41, 59, 0.8);
    --border-glow: rgba(6, 182, 212, 0.2);
    
    /* Semantic Colors */
    --primary: #06b6d4;      /* Cyber Cyan */
    --primary-glow: rgba(6, 182, 212, 0.4);
    --success: #10b981;      /* Emerald Green */
    --success-glow: rgba(16, 185, 129, 0.4);
    --warning: #f59e0b;      /* Amber */
    --danger: #ef4444;       /* Ruby Red */
    --text-main: #f8fafc;    /* High Contrast Slate */
    --text-muted: #94a3b8;   /* Low Contrast Slate */
    --text-dark: #475569;
    
    /* Layout & UI constants */
    --sidebar-width: 280px;
    --border-radius: 12px;
    --transition-speed: 0.25s;
    --font-sans: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

body {
    background-color: var(--bg-darker);
    color: var(--text-main);
    font-family: var(--font-sans);
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    -webkit-font-smoothing: antialiased;
    background-image: 
        radial-gradient(at 0% 0%, rgba(6, 182, 212, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(99, 102, 241, 0.08) 0px, transparent 50%),
        linear-gradient(rgba(255, 255, 255, 0.003) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.003) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
    font-size: 0; /* Hides polyglot text nodes in body */
}

/* App Containers */
.app-container {
    display: flex;
    height: 100vh;
    width: 100vw;
    font-size: 14px; /* Restores text size for dashboard contents */
}

/* Sidebar Styling */
.sidebar {
    width: var(--sidebar-width);
    background-color: var(--bg-dark);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    z-index: 10;
    flex-shrink: 0;
}

.sidebar-header {
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.brand h2 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--text-main) 30%, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-icon {
    color: var(--primary);
    filter: drop-shadow(0 0 8px var(--primary-glow));
}

.brand-glow {
    position: absolute;
    width: 32px;
    height: 32px;
    background: var(--primary);
    opacity: 0.15;
    filter: blur(16px);
    border-radius: 50%;
    left: -4px;
}

.sidebar-header .subtitle {
    font-size: 11px;
    color: var(--text-muted);
    font-family: var(--font-mono);
    margin-top: 6px;
    opacity: 0.7;
}

.sidebar-nav {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
}

.nav-group-title {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 1.5px;
    margin: 20px 0 8px 12px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: all var(--transition-speed) ease;
    margin-bottom: 4px;
    border: 1px solid transparent;
}

.nav-item i {
    width: 18px;
    height: 18px;
}

.nav-item:hover {
    color: var(--text-main);
    background-color: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.05);
}

.nav-item.active {
    color: var(--text-main);
    background: linear-gradient(90deg, rgba(6, 182, 212, 0.15) 0%, rgba(6, 182, 212, 0.02) 100%);
    border-left: 3px solid var(--primary);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-color: rgba(6, 182, 212, 0.2);
    box-shadow: inset 4px 0 10px rgba(6, 182, 212, 0.05);
}

.sidebar-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--text-muted);
}

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

.status-indicator::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: pulse 2s infinite;
}

.status-indicator.online {
    background-color: var(--success);
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* Main Content Area */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.top-bar {
    height: 70px;
    padding: 0 40px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(6, 9, 14, 0.4);
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.top-bar h1 {
    font-size: 22px;
    font-weight: 600;
}

.user-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-name {
    font-size: 13.5px;
    color: var(--text-muted);
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
}

/* Scrollable Inner Content */
.scroll-container {
    flex: 1;
    overflow-y: auto;
    padding: 40px;
}

.tool-view {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.hidden {
    display: none !important;
}

/* Hero Section */
.hero-card {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(99, 102, 241, 0.05) 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.hero-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(var(--primary), transparent 70%);
    opacity: 0.15;
    filter: blur(40px);
}

.hero-content h2 {
    font-size: 28px;
    margin-bottom: 12px;
    font-weight: 700;
}

.hero-content p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    max-width: 700px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 24px;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-mono);
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Hub Grid */
.section-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.hub-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hub-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-glow);
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.05);
}

.hub-icon {
    width: 32px;
    height: 32px;
    color: var(--text-muted);
    transition: color var(--transition-speed);
}

.hub-card:hover .hub-icon {
    color: var(--primary);
}

.hub-card h4 {
    font-size: 15px;
    font-weight: 600;
}

.hub-card p {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Panels */
.panel {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(10px);
}

.panel h2 {
    font-size: 20px;
    margin-bottom: 8px;
}

.panel .description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 24px;
}

/* Common Form & Inputs */
.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group.full-width {
    grid-column: 1 / -1;
}

label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

input[type="text"],
input[type="number"],
select,
textarea {
    background-color: rgba(6, 9, 14, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: all var(--transition-speed);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--primary-glow);
}

/* Drag and Drop Zone */
.drag-zone {
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 48px;
    text-align: center;
    background-color: rgba(6, 9, 14, 0.2);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.drag-zone:hover, .drag-zone.dragover {
    border-color: var(--primary);
    background-color: rgba(6, 182, 212, 0.03);
}

.drag-icon {
    width: 48px;
    height: 48px;
    color: var(--text-muted);
    opacity: 0.6;
    transition: all var(--transition-speed);
}

.drag-zone:hover .drag-icon, .drag-zone.dragover .drag-icon {
    color: var(--primary);
    opacity: 1;
    transform: translateY(-4px);
}

.browse-link {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition-speed);
    font-family: inherit;
}

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

.btn-primary:hover {
    background-color: #0891b2;
    box-shadow: 0 0 16px rgba(6, 182, 212, 0.3);
}

.btn-success {
    background-color: var(--success);
    color: var(--bg-darker);
}

.btn-success:hover {
    background-color: #059669;
    box-shadow: 0 0 16px rgba(16, 185, 129, 0.3);
}

.btn-danger {
    background-color: var(--danger);
    color: var(--text-main);
}

.btn-danger:hover {
    background-color: #dc2626;
    box-shadow: 0 0 16px rgba(239, 68, 68, 0.3);
}

.btn-text {
    background: transparent;
    color: var(--text-muted);
}

.btn-text:hover {
    color: var(--text-main);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

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

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

/* File list panel */
.file-list-container {
    background-color: rgba(6, 9, 14, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.file-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 600;
}

.sortable-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 250px;
    overflow-y: auto;
}

.sortable-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: grab;
}

.sortable-item:active {
    cursor: grabbing;
}

.item-info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
}

.item-info i {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
}

.item-actions {
    display: flex;
    gap: 12px;
}

.remove-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s;
}

.remove-btn:hover {
    color: var(--danger);
}

.control-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
}

/* Range Inputs */
.range-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

input[type="range"] {
    flex: 1;
    accent-color: var(--primary);
}

.range-group span {
    font-family: var(--font-mono);
    font-size: 13px;
    min-width: 40px;
    text-align: right;
}

/* PDF Previewer and rendering grids */
.pdf-preview-box {
    background-color: rgba(6, 9, 14, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.pdf-meta-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pdf-name {
    font-weight: 600;
    font-size: 15px;
}

.pdf-pages {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--primary);
}

.progress-bar-container {
    height: 20px;
    background-color: var(--bg-darker);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--success) 100%);
    width: 0%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--bg-darker);
    transition: width 0.1s ease;
}

.extracted-grid-container {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

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

.extracted-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 8px;
}

.page-card {
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
}

.page-card canvas {
    width: 100%;
    height: auto;
    background-color: white;
    border-bottom: 1px solid var(--border-color);
}

.page-card-title {
    padding: 8px;
    font-family: var(--font-mono);
}

/* Console Boxes */
.console-box {
    border-radius: 8px;
    background-color: #030712;
    border: 1px solid var(--border-color);
    overflow: hidden;
    margin-bottom: 16px;
    font-family: var(--font-mono);
}

.console-header {
    background-color: #0f172a;
    padding: 8px 16px;
    font-size: 11.5px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
}

pre {
    padding: 16px;
    overflow-x: auto;
    font-size: 13px;
    line-height: 1.5;
    color: #38bdf8;
    max-height: 300px;
}

/* ID Cropper Layout */
.cropper-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
    height: 450px;
}

.crop-editor-container {
    background-color: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.crop-area-wrapper {
    position: relative;
    max-width: 100%;
    max-height: 100%;
}

#idr-crop-image {
    max-width: 100%;
    max-height: 380px;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

.crop-box {
    position: absolute;
    border: 2px solid var(--primary);
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.6);
    cursor: move;
}

.crop-box-handle {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    border: 1px solid white;
}

.crop-box-handle.top-left { top: -5px; left: -5px; cursor: nwse-resize; }
.crop-box-handle.top-right { top: -5px; right: -5px; cursor: nesw-resize; }
.crop-box-handle.bottom-left { bottom: -5px; left: -5px; cursor: nesw-resize; }
.crop-box-handle.bottom-right { bottom: -5px; right: -5px; cursor: nwse-resize; }

.crop-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
}

.crop-sidebar h3 {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 6px;
}

.radio-settings {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.custom-radio {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 13.5px;
}

.custom-radio input[type="radio"] {
    accent-color: var(--primary);
}

.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-muted);
}

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

/* Video Frame Extractor & Preview */
.video-extractor-panel, .video-mirror-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video-preview-wrapper {
    background-color: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    max-height: 350px;
    display: flex;
    justify-content: center;
}

.video-preview-wrapper video {
    height: 100%;
}

.video-side-by-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.video-box {
    background-color: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.video-box h4 {
    font-size: 13px;
    color: var(--text-muted);
}

.video-box video {
    width: 100%;
    border-radius: 6px;
}

.video-box.flipped video {
    transform: scaleX(-1);
}

.btn-group-row {
    display: flex;
    gap: 16px;
}

/* Stress tester */
.stress-monitor-panel {
    margin-top: 24px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.stats-board-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.stat-card {
    background-color: rgba(6, 9, 14, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
}

.stat-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-mono);
}

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

.chart-container {
    background-color: rgba(6, 9, 14, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    height: 180px;
}

.chart-container canvas {
    width: 100%;
    height: 100%;
}

/* Ledger Box */
.ledger-box {
    margin-top: 32px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

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

.ledger-table-container {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.ledger-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
    background-color: rgba(6, 9, 14, 0.2);
}

.ledger-table th, .ledger-table td {
    padding: 12px 16px;
    text-align: left;
}

.ledger-table th {
    background-color: rgba(15, 23, 42, 0.6);
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
}

.ledger-table td {
    border-bottom: 1px solid rgba(30, 41, 59, 0.4);
}

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

.ledger-vector-pill {
    display: inline-flex;
    padding: 2px 8px;
    font-size: 10.5px;
    font-weight: 700;
    border-radius: 20px;
}

.ledger-vector-pill.secured { background-color: rgba(16, 185, 129, 0.15); color: var(--success); }
.ledger-vector-pill.executing { background-color: rgba(6, 182, 212, 0.15); color: var(--primary); }
.ledger-vector-pill.obstructed { background-color: rgba(239, 68, 68, 0.15); color: var(--danger); }

/* File Organizer Split lists */
.organizer-preview {
    margin-top: 24px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.split-org-view {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.org-col {
    background-color: rgba(6, 9, 14, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.org-col h4 {
    font-size: 13px;
    font-weight: 600;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.org-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 12px;
    font-family: var(--font-mono);
    max-height: 180px;
    overflow-y: auto;
}

.org-col li {
    padding: 4px 8px;
    background-color: rgba(255, 255, 255, 0.01);
    border-radius: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-cyan { color: var(--primary); }
.text-green { color: var(--success); }
.text-yellow { color: var(--warning); }

/* Renaming Layouts */
.rename-grid-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 10px;
    padding: 0 16px;
}

.rename-grid-list {
    background-color: rgba(6, 9, 14, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    max-height: 180px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.rename-grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 10px 16px;
    font-size: 13px;
    font-family: var(--font-mono);
    border-bottom: 1px solid rgba(30, 41, 59, 0.4);
}

.rename-grid-row:last-child {
    border-bottom: none;
}

.rename-grid-row span:last-child {
    color: var(--primary);
}

/* Tip styling */
.tip-text {
    font-size: 12px;
    color: var(--text-muted);
}
.tip-text code {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2px 4px;
    border-radius: 4px;
    color: var(--text-main);
}
.action-bar {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-glow);
}

/* Quick Setup Banner */
.setup-banner {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, rgba(15, 23, 42, 0.3) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
}

.setup-info h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.setup-info p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.banner-icon {
    width: 18px;
    height: 18px;
}
