@import '_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.84wtju4z0n.bundle.scp.css';

/* _content/JIrlee.Panel.UI/Pages/Dashboard/Bot/BotCategories.razor.rz.scp.css */
/* ═══════════════════════════════════════
   Bot Categories — Scoped Styles
   ═══════════════════════════════════════ */

.cat-grid[b-1dwsqa1d8r] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
}

.cat-card[b-1dwsqa1d8r] {
    background: var(--card-bg, #1e293b);
    border: 1px solid var(--border-color, rgba(255,255,255,0.06));
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
    transition: transform var(--duration, 0.25s) var(--ease-spring, cubic-bezier(0.34, 1.56, 0.64, 1)),
                box-shadow var(--duration, 0.25s) var(--ease, ease),
                border-color var(--duration, 0.25s) var(--ease, ease);
}

.cat-card[b-1dwsqa1d8r]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--brand, #6366f1) 5%, transparent),
        transparent 60%
    );
    opacity: 0;
    transition: opacity var(--duration, 0.25s) var(--ease, ease);
    pointer-events: none;
}

.cat-card > *[b-1dwsqa1d8r] {
    position: relative;
    z-index: 1;
}

.cat-card:hover[b-1dwsqa1d8r] {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08), 0 0 0 1px color-mix(in srgb, var(--brand, #6366f1) 14%, transparent);
    border-color: color-mix(in srgb, var(--brand, #6366f1) 20%, transparent);
}

.cat-card:hover[b-1dwsqa1d8r]::before {
    opacity: 1;
}

.cat-header[b-1dwsqa1d8r] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cat-icon[b-1dwsqa1d8r] {
    font-size: 1.6rem;
    transition: transform var(--duration, 0.25s) var(--ease-spring, cubic-bezier(0.34, 1.56, 0.64, 1));
}

.cat-card:hover .cat-icon[b-1dwsqa1d8r] {
    transform: scale(1.15) rotate(-6deg);
}

.cat-name[b-1dwsqa1d8r] {
    font-weight: 600;
    color: var(--text-primary, #e2e8f0);
    font-size: 0.95rem;
}

.cat-eng[b-1dwsqa1d8r] {
    font-size: 0.8rem;
    color: var(--text-muted, #64748b);
}

.cat-samples[b-1dwsqa1d8r] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.cat-tag[b-1dwsqa1d8r] {
    background: color-mix(in srgb, var(--brand, #6366f1) 10%, transparent);
    color: var(--brand, #6366f1);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 500;
    transition: background var(--duration, 0.25s) var(--ease, ease),
                transform 0.15s var(--ease-spring, cubic-bezier(0.34, 1.56, 0.64, 1));
}

.cat-tag:hover[b-1dwsqa1d8r] {
    background: color-mix(in srgb, var(--brand, #6366f1) 18%, transparent);
    transform: scale(1.05);
}

.cat-more[b-1dwsqa1d8r] {
    font-size: 0.75rem;
    color: var(--text-muted, #64748b);
    padding: 3px 8px;
}

.cat-actions[b-1dwsqa1d8r] {
    display: flex;
    gap: 6px;
    justify-content: flex-end;
    border-top: 1px solid var(--border-color, rgba(255,255,255,0.04));
    padding-top: 10px;
}

.cat-edit[b-1dwsqa1d8r] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
/* _content/JIrlee.Panel.UI/Pages/Dashboard/Bot/BotConfigEditor.razor.rz.scp.css */
/* ═══════════════════════════════════════
   Bot Configuration — Scoped Styles
   ═══════════════════════════════════════ */

.cfg-card[b-wrxd4zl6rv] {
    background: var(--card-bg, #1e293b);
    border: 1px solid var(--border-color, rgba(255,255,255,0.06));
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    transition: border-color var(--duration, 0.25s) var(--ease, ease),
                box-shadow var(--duration, 0.25s) var(--ease, ease);
}

.cfg-card[b-wrxd4zl6rv]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--brand-gradient, linear-gradient(135deg, #6366f1, #8b5cf6));
    opacity: 0;
    transition: opacity var(--duration, 0.25s) var(--ease, ease);
}

.cfg-card:hover[b-wrxd4zl6rv] {
    border-color: color-mix(in srgb, var(--brand, #6366f1) 20%, transparent);
    box-shadow: 0 4px 16px color-mix(in srgb, var(--brand, #6366f1) 6%, transparent);
}

.cfg-card:hover[b-wrxd4zl6rv]::before {
    opacity: 1;
}

.cfg-card-header[b-wrxd4zl6rv] {
    padding: 14px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary, #e2e8f0);
    border-bottom: 1px solid var(--border-color, rgba(255,255,255,0.04));
    display: flex;
    align-items: center;
    gap: 10px;
    text-wrap: balance;
}

.cfg-card-header i[b-wrxd4zl6rv] {
    transition: transform var(--duration, 0.25s) var(--ease-spring, cubic-bezier(0.34, 1.56, 0.64, 1));
}

.cfg-card:hover .cfg-card-header i[b-wrxd4zl6rv] {
    transform: scale(1.15) rotate(-4deg);
}

.cfg-card-body[b-wrxd4zl6rv] {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cfg-actions[b-wrxd4zl6rv] {
    display: flex;
    justify-content: flex-end;
    padding-top: 8px;
    border-top: 1px solid var(--border-color, rgba(255,255,255,0.04));
}

.cfg-hint[b-wrxd4zl6rv] {
    font-size: 0.75rem;
    color: var(--text-muted, #64748b);
    margin-top: 4px;
}

.cfg-hint code[b-wrxd4zl6rv] {
    background: rgba(99, 102, 241, 0.1);
    padding: 1px 5px;
    border-radius: 4px;
    font-size: 0.75rem;
}

[b-wrxd4zl6rv] .bm-input-color {
    width: 60px;
    height: 38px;
    padding: 4px;
    cursor: pointer;
}

/* ─── Split Layout: Form + Preview ─── */
.cfg-split[b-wrxd4zl6rv] {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
    align-items: start;
}

.cfg-form-side[b-wrxd4zl6rv] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cfg-preview-side[b-wrxd4zl6rv] {
    position: sticky;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cfg-preview-title[b-wrxd4zl6rv] {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted, #94a3b8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cfg-preview-title i[b-wrxd4zl6rv] { color: var(--brand, #6366f1); }

.cfg-preview-caption[b-wrxd4zl6rv] {
    font-size: 0.72rem;
    color: var(--text-muted, #64748b);
    text-align: center;
}

/* ─── URL Preview ─── */
.cfg-url-preview[b-wrxd4zl6rv] {
    background: var(--surface-1, #0f172a);
    border: 1px solid var(--border-color, rgba(255,255,255,0.06));
    border-radius: 10px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cfg-url-item[b-wrxd4zl6rv] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
}

.cfg-url-item i[b-wrxd4zl6rv] {
    width: 20px;
    text-align: center;
    color: var(--brand, #6366f1);
    flex-shrink: 0;
}

.cfg-url-item a[b-wrxd4zl6rv], .cfg-url-item span[b-wrxd4zl6rv] {
    color: var(--text-secondary, #cbd5e1);
    text-decoration: none;
    word-break: break-all;
    transition: color 0.2s;
}

.cfg-url-item a:hover[b-wrxd4zl6rv] { color: var(--brand, #6366f1); }

.cfg-footer-sample[b-wrxd4zl6rv] {
    background: var(--surface-1, #0f172a);
    border: 1px solid var(--border-color, rgba(255,255,255,0.06));
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.78rem;
    color: var(--text-secondary, #94a3b8);
    text-align: center;
}

.cfg-footer-sample a[b-wrxd4zl6rv] {
    color: var(--brand, #6366f1);
    text-decoration: none;
}

/* ─── Image Preview Card ─── */
.cfg-img-preview[b-wrxd4zl6rv] {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    max-height: 320px;
}

.cfg-img-header[b-wrxd4zl6rv] {
    padding: 14px 16px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.cfg-img-body[b-wrxd4zl6rv] {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px;
    gap: 8px;
    background: #f8fafc;
}

.cfg-img-word[b-wrxd4zl6rv] {
    font-weight: 700;
    color: #1e293b;
    text-align: center;
}

.cfg-img-lang[b-wrxd4zl6rv] {
    color: #64748b;
    text-align: center;
}

.cfg-img-footer[b-wrxd4zl6rv] {
    padding: 8px 16px;
    text-align: center;
    color: #94a3b8;
    border-top: 1px solid #e2e8f0;
    background: #f1f5f9;
}

/* ─── Notification Preview ─── */
.cfg-notif-preview[b-wrxd4zl6rv] {
    background: var(--surface-1, #0f172a);
    border: 1px solid var(--border-color, rgba(255,255,255,0.06));
    border-radius: 10px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cfg-notif-preview-title[b-wrxd4zl6rv] {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted, #94a3b8);
    display: flex;
    align-items: center;
    gap: 6px;
}

.cfg-notif-preview-title i[b-wrxd4zl6rv] { color: #0088cc; }

.cfg-notif-preview .bm-preview-bubble[b-wrxd4zl6rv] {
    background: #1a2a3a;
    color: #e2e8f0;
    border-radius: 0 10px 10px 10px;
    padding: 12px 14px;
    font-size: 0.82rem;
    line-height: 1.55;
    word-break: break-word;
}

/* ─── Responsive ─── */
@media (max-width: 800px) {
    .cfg-split[b-wrxd4zl6rv] {
        grid-template-columns: 1fr;
    }
    .cfg-preview-side[b-wrxd4zl6rv] {
        position: static;
    }
}
/* _content/JIrlee.Panel.UI/Pages/Dashboard/Bot/BotDashboard.razor.rz.scp.css */
/* ??????????????????????????????????????????
   Bot Automation � Scoped Styles
   ?????????????????????????????????????????? */

/* Loading */
.bot-loading[b-l5lroagm8t] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    gap: 16px;
    color: var(--text-muted, #94a3b8);
}

.bot-spinner[b-l5lroagm8t] {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(99, 102, 241, 0.15);
    border-top-color: var(--brand, #6366f1);
    border-radius: 50%;
    animation: bot-spin-b-l5lroagm8t 0.8s linear infinite;
}

@keyframes bot-spin-b-l5lroagm8t {
    to { transform: rotate(360deg); }
}

/* Status Row */
.bot-status-row[b-l5lroagm8t] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.bot-card[b-l5lroagm8t] {
    background: var(--card-bg, #fff);
    border-radius: 16px;
    border: 1px solid var(--border-color, rgba(0,0,0,0.06));
    overflow: hidden;
    position: relative;
    transition: transform var(--duration, 0.25s) var(--ease-spring, cubic-bezier(0.34, 1.56, 0.64, 1)),
                box-shadow var(--duration, 0.25s) var(--ease, ease),
                border-color var(--duration, 0.25s) var(--ease, ease);
}

.bot-card[b-l5lroagm8t]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--brand, #6366f1) 4%, transparent),
        transparent 60%
    );
    opacity: 0;
    transition: opacity var(--duration, 0.25s) var(--ease, ease);
    pointer-events: none;
    z-index: 0;
}

.bot-card > *[b-l5lroagm8t] {
    position: relative;
    z-index: 1;
}

.bot-card:hover[b-l5lroagm8t] {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08), 0 0 0 1px color-mix(in srgb, var(--brand, #6366f1) 15%, transparent);
    border-color: color-mix(in srgb, var(--brand, #6366f1) 25%, transparent);
}

.bot-card:hover[b-l5lroagm8t]::before {
    opacity: 1;
}

.bot-card-header[b-l5lroagm8t] {
    padding: 16px 20px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--text-muted, #64748b);
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border-color, rgba(0,0,0,0.04));
}

.bot-card-body[b-l5lroagm8t] {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* Status Indicator */
.bot-status-indicator[b-l5lroagm8t] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
}

.bot-status-on[b-l5lroagm8t] {
    color: #10b981;
}

.bot-status-off[b-l5lroagm8t] {
    color: #ef4444;
}

.bot-pulse[b-l5lroagm8t] {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
}

.bot-status-on .bot-pulse[b-l5lroagm8t] {
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
    animation: bot-pulse-green-b-l5lroagm8t 2s infinite;
}

.bot-status-off .bot-pulse[b-l5lroagm8t] {
    background: #ef4444;
}

@keyframes bot-pulse-green-b-l5lroagm8t {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Schedule */
.bot-schedule-value[b-l5lroagm8t] {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.bot-schedule-number[b-l5lroagm8t] {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand, #6366f1);
    line-height: 1;
    background: var(--brand-gradient, linear-gradient(135deg, #6366f1, #8b5cf6));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bot-schedule-unit[b-l5lroagm8t] {
    font-size: 0.9rem;
    color: var(--text-muted, #64748b);
}

.bot-schedule-detail[b-l5lroagm8t] {
    font-size: 0.82rem;
    color: var(--text-muted, #94a3b8);
    display: flex;
    align-items: center;
    gap: 6px;
}

.bot-action-desc[b-l5lroagm8t] {
    font-size: 0.88rem;
    color: var(--text-muted, #64748b);
    text-align: center;
    margin: 0;
}

/* Buttons */
.bot-btn[b-l5lroagm8t] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.2s var(--ease, ease);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.bot-btn[b-l5lroagm8t]::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}

.bot-btn:hover[b-l5lroagm8t]::after {
    opacity: 1;
}

.bot-btn:disabled[b-l5lroagm8t] {
    opacity: 0.6;
    cursor: not-allowed;
}

.bot-btn-primary[b-l5lroagm8t] {
    background: var(--brand, #6366f1);
    color: #fff;
}

.bot-btn-primary:hover:not(:disabled)[b-l5lroagm8t] {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.bot-btn-success[b-l5lroagm8t] {
    background: #10b981;
    color: #fff;
}

.bot-btn-success:hover:not(:disabled)[b-l5lroagm8t] {
    background: #059669;
}

.bot-btn-danger[b-l5lroagm8t] {
    background: #ef4444;
    color: #fff;
}

.bot-btn-danger:hover:not(:disabled)[b-l5lroagm8t] {
    background: #dc2626;
}

.bot-btn-spinner[b-l5lroagm8t] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: bot-spin-b-l5lroagm8t 0.6s linear infinite;
}

/* Alert */
.bot-alert[b-l5lroagm8t] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    animation: bot-fade-in-b-l5lroagm8t 0.3s ease-out;
}

.bot-alert-success[b-l5lroagm8t] {
    background: rgba(16, 185, 129, 0.08);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.bot-alert-error[b-l5lroagm8t] {
    background: rgba(239, 68, 68, 0.08);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.bot-alert-close[b-l5lroagm8t] {
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    opacity: 0.6;
    padding: 4px;
}

.bot-alert-close:hover[b-l5lroagm8t] {
    opacity: 1;
}

@keyframes bot-fade-in-b-l5lroagm8t {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Section Titles */
.bot-section-title[b-l5lroagm8t] {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary, #1e293b);
    margin: 28px 0 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bot-section-title i[b-l5lroagm8t] {
    color: var(--brand, #6366f1);
}

/* Analytics Row */
.bot-analytics-row[b-l5lroagm8t] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 8px;
}

.bot-metric-card[b-l5lroagm8t] {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--card-bg, #fff);
    border-radius: 14px;
    border: 1px solid var(--border-color, rgba(0,0,0,0.06));
    position: relative;
    overflow: hidden;
    transition: transform var(--duration, 0.25s) var(--ease-spring, cubic-bezier(0.34, 1.56, 0.64, 1)),
                box-shadow var(--duration, 0.25s) var(--ease, ease),
                border-color var(--duration, 0.25s) var(--ease, ease);
}

.bot-metric-card[b-l5lroagm8t]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--brand-gradient, linear-gradient(135deg, #6366f1, #8b5cf6));
    opacity: 0;
    transition: opacity var(--duration, 0.25s) var(--ease, ease);
}

.bot-metric-card:hover[b-l5lroagm8t] {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.06), 0 0 16px color-mix(in srgb, var(--brand, #6366f1) 8%, transparent);
    border-color: color-mix(in srgb, var(--brand, #6366f1) 20%, transparent);
}

.bot-metric-card:hover[b-l5lroagm8t]::after {
    opacity: 1;
}

.bot-metric-icon[b-l5lroagm8t] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: transform var(--duration, 0.25s) var(--ease-spring, cubic-bezier(0.34, 1.56, 0.64, 1)),
                box-shadow var(--duration, 0.25s) var(--ease, ease);
}

.bot-metric-card:hover .bot-metric-icon[b-l5lroagm8t] {
    transform: scale(1.1) rotate(-4deg);
    box-shadow: 0 0 16px rgba(0,0,0,0.15);
}

.bot-metric-info[b-l5lroagm8t] {
    display: flex;
    flex-direction: column;
}

.bot-metric-value[b-l5lroagm8t] {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary, #1e293b);
    line-height: 1.2;
}

.bot-metric-label[b-l5lroagm8t] {
    font-size: 0.78rem;
    color: var(--text-muted, #94a3b8);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
}

/* Configuration Panel */
.bot-config-panel[b-l5lroagm8t] {
    background: var(--card-bg, #fff);
    border-radius: 16px;
    border: 1px solid var(--border-color, rgba(0,0,0,0.06));
    padding: 24px;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
}

.bot-config-panel[b-l5lroagm8t]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--brand-gradient, linear-gradient(135deg, #6366f1, #8b5cf6));
}

.bot-config-group[b-l5lroagm8t] {
    margin-bottom: 20px;
}

.bot-config-label[b-l5lroagm8t] {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary, #1e293b);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.bot-config-input-row[b-l5lroagm8t] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bot-range[b-l5lroagm8t] {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 3px;
    background: var(--border-color, #e2e8f0);
    outline: none;
}

.bot-range[b-l5lroagm8t]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--brand, #6366f1);
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.bot-range-value[b-l5lroagm8t] {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--brand, #6366f1);
    min-width: 48px;
    text-align: center;
}

.bot-config-presets[b-l5lroagm8t] {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.bot-preset[b-l5lroagm8t] {
    padding: 6px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-color, #e2e8f0);
    background: transparent;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted, #64748b);
    cursor: pointer;
    transition: all 0.15s;
}

.bot-preset:hover[b-l5lroagm8t] {
    border-color: var(--brand, #6366f1);
    color: var(--brand, #6366f1);
}

.bot-preset.active[b-l5lroagm8t] {
    background: var(--brand, #6366f1);
    color: #fff;
    border-color: var(--brand, #6366f1);
}

.bot-btn-save[b-l5lroagm8t] {
    margin-top: 8px;
}

/* Activity Table */
.bot-activity-panel[b-l5lroagm8t] {
    background: var(--card-bg, #fff);
    border-radius: 16px;
    border: 1px solid var(--border-color, rgba(0,0,0,0.06));
    overflow: hidden;
    margin-bottom: 24px;
}

.bot-table-wrap[b-l5lroagm8t] {
    overflow-x: auto;
}

.bot-table[b-l5lroagm8t] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.bot-table thead th[b-l5lroagm8t] {
    padding: 14px 18px;
    text-align: left;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted, #64748b);
    border-bottom: 1px solid var(--border-color, rgba(0,0,0,0.06));
    white-space: nowrap;
}

.bot-table tbody tr[b-l5lroagm8t] {
    transition: background 0.15s;
}

.bot-table tbody tr:hover[b-l5lroagm8t] {
    background: var(--brand-muted, rgba(99, 102, 241, 0.04));
}

.bot-table tbody td[b-l5lroagm8t] {
    padding: 12px 18px;
    color: var(--text-primary, #1e293b);
    border-bottom: 1px solid var(--border-color, rgba(0,0,0,0.03));
    white-space: nowrap;
}

.bot-platform-badge[b-l5lroagm8t] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 6px;
    background: rgba(99, 102, 241, 0.08);
    color: var(--brand, #6366f1);
    font-weight: 600;
    font-size: 0.82rem;
}

.bot-mono[b-l5lroagm8t] {
    font-family: 'Courier New', monospace;
    font-size: 0.82rem;
    color: var(--text-muted, #94a3b8);
}

/* Empty State */
.bot-empty[b-l5lroagm8t] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    gap: 12px;
    color: var(--text-muted, #94a3b8);
}

.bot-empty i[b-l5lroagm8t] {
    font-size: 2.5rem;
    opacity: 0.4;
}

.bot-empty p[b-l5lroagm8t] {
    max-width: 400px;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .bot-status-row[b-l5lroagm8t] {
        grid-template-columns: 1fr;
    }

    .bot-analytics-row[b-l5lroagm8t] {
        grid-template-columns: repeat(2, 1fr);
    }

    .bot-config-presets[b-l5lroagm8t] {
        justify-content: center;
    }

    .bot-health-grid[b-l5lroagm8t] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .bot-analytics-row[b-l5lroagm8t] {
        grid-template-columns: 1fr;
    }

    .bot-metric-card[b-l5lroagm8t] {
        padding: 14px;
    }
}

/* Health Check Panel */
.bot-health-panel[b-l5lroagm8t] {
    background: var(--card-bg, #fff);
    border-radius: 16px;
    border: 1px solid var(--border-color, rgba(0,0,0,0.06));
    padding: 24px;
    margin-bottom: 24px;
}

.bot-health-loading[b-l5lroagm8t] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px;
    color: var(--text-muted, #94a3b8);
    font-size: 0.9rem;
}

.bot-health-grid[b-l5lroagm8t] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.bot-health-item[b-l5lroagm8t] {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 12px;
    border: 1px solid var(--border-color, rgba(0,0,0,0.06));
    transition: transform 0.2s, box-shadow 0.2s;
}

.bot-health-item:hover[b-l5lroagm8t] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.bot-health-ok[b-l5lroagm8t] {
    border-left: 4px solid #10b981;
}

.bot-health-fail[b-l5lroagm8t] {
    border-left: 4px solid #ef4444;
}

.bot-health-info[b-l5lroagm8t] {
    border-left: 4px solid #6366f1;
}

.bot-health-icon[b-l5lroagm8t] {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.bot-health-ok .bot-health-icon[b-l5lroagm8t] {
    color: #10b981;
}

.bot-health-fail .bot-health-icon[b-l5lroagm8t] {
    color: #ef4444;
}

.bot-health-info .bot-health-icon[b-l5lroagm8t] {
    color: #6366f1;
}

.bot-health-detail[b-l5lroagm8t] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bot-health-title[b-l5lroagm8t] {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text-primary, #1e293b);
}

.bot-health-desc[b-l5lroagm8t] {
    font-size: 0.82rem;
    color: var(--text-muted, #64748b);
    word-break: break-word;
}

.bot-health-latency[b-l5lroagm8t] {
    font-size: 0.75rem;
    color: var(--text-muted, #94a3b8);
    font-family: 'Courier New', monospace;
}

.bot-btn-outline[b-l5lroagm8t] {
    background: transparent;
    color: var(--brand, #6366f1);
    border: 1.5px solid var(--brand, #6366f1);
    border-radius: 10px;
    padding: 10px 22px;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.bot-btn-outline:hover:not(:disabled)[b-l5lroagm8t] {
    background: var(--brand, #6366f1);
    color: #fff;
}

.bot-btn-outline:disabled[b-l5lroagm8t] {
    opacity: 0.6;
    cursor: not-allowed;
}
/* _content/JIrlee.Panel.UI/Pages/Dashboard/Bot/BotGuide.razor.rz.scp.css */
/* ═══════════════════ BotGuide Page Styles ═══════════════════ */

/* ── Welcome Banner ── */
.guide-welcome[b-3iv8kd9m6i] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, var(--color-primary, #0d6efd) 0%, #6610f2 100%);
    color: #fff;
    padding: 2rem 2.5rem;
    border-radius: 1.25rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(13, 110, 253, 0.18);
}

.guide-welcome-icon[b-3iv8kd9m6i] {
    font-size: 3.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.guide-welcome h1[b-3iv8kd9m6i] {
    font-size: 1.55rem;
    font-weight: 700;
    margin: 0 0 0.35rem;
}

.guide-welcome p[b-3iv8kd9m6i] {
    margin: 0;
    opacity: 0.88;
    font-size: 1rem;
}

/* ── Quick Navigation Grid ── */
.guide-nav-grid[b-3iv8kd9m6i] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.guide-nav-card[b-3iv8kd9m6i] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 0.75rem;
    border-radius: 1rem;
    background: var(--surface-card, #fff);
    border: 1px solid var(--border-color-light, #e9ecef);
    text-decoration: none;
    color: var(--text-primary, #212529);
    transition: all 0.2s ease;
    text-align: center;
}

.guide-nav-card:hover[b-3iv8kd9m6i] {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary, #0d6efd);
}

.guide-nav-icon[b-3iv8kd9m6i] {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
}

.guide-nav-card strong[b-3iv8kd9m6i] {
    font-size: 0.92rem;
    font-weight: 600;
}

.guide-nav-card span[b-3iv8kd9m6i] {
    font-size: 0.78rem;
    color: var(--text-muted, #6c757d);
}

/* ── Section Container ── */
.guide-section[b-3iv8kd9m6i] {
    background: var(--surface-card, #fff);
    border-radius: 1rem;
    border: 1px solid var(--border-color-light, #e9ecef);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.guide-section:hover[b-3iv8kd9m6i] {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.guide-section-header[b-3iv8kd9m6i] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color-light, #e9ecef);
}

.guide-section-icon[b-3iv8kd9m6i] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.guide-section-header h2[b-3iv8kd9m6i] {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary, #212529);
}

.guide-section-path[b-3iv8kd9m6i] {
    margin: 0.2rem 0 0;
    font-size: 0.82rem;
    color: var(--text-muted, #6c757d);
}

.guide-section-path i[b-3iv8kd9m6i] {
    margin-left: 0.35rem;
    font-size: 0.72rem;
}

.guide-section-body[b-3iv8kd9m6i] {
    padding: 1.5rem;
}

.guide-section-body > p[b-3iv8kd9m6i] {
    margin: 0 0 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary, #495057);
}

.guide-section-body h3[b-3iv8kd9m6i] {
    font-size: 1rem;
    font-weight: 600;
    margin: 1.25rem 0 0.75rem;
    color: var(--text-primary, #212529);
}

/* ── Steps ── */
.guide-steps[b-3iv8kd9m6i] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1rem 0;
}

.guide-step[b-3iv8kd9m6i] {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    background: var(--surface-ground, #f8f9fa);
    border-radius: 0.75rem;
    border-right: 3px solid var(--color-primary, #0d6efd);
}

.step-num[b-3iv8kd9m6i] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-primary, #0d6efd);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.guide-step strong[b-3iv8kd9m6i] {
    display: block;
    font-size: 0.92rem;
    margin-bottom: 0.15rem;
    color: var(--text-primary, #212529);
}

.guide-step span[b-3iv8kd9m6i] {
    font-size: 0.82rem;
    color: var(--text-muted, #6c757d);
    line-height: 1.5;
}

/* ── Field Table ── */
.guide-field-table[b-3iv8kd9m6i] {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border-color-light, #e9ecef);
    border-radius: 0.75rem;
    overflow: hidden;
    margin: 0.75rem 0;
}

.guide-field[b-3iv8kd9m6i] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-color-light, #e9ecef);
}

.guide-field:last-child[b-3iv8kd9m6i] {
    border-bottom: none;
}

.guide-field:nth-child(even)[b-3iv8kd9m6i] {
    background: var(--surface-ground, #f8f9fa);
}

.field-name[b-3iv8kd9m6i] {
    min-width: 140px;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-primary, #212529);
}

.field-desc[b-3iv8kd9m6i] {
    font-size: 0.85rem;
    color: var(--text-secondary, #495057);
    line-height: 1.5;
}

.field-desc code[b-3iv8kd9m6i] {
    background: rgba(13, 110, 253, 0.08);
    color: var(--color-primary, #0d6efd);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.82rem;
}

/* ── Variables Grid ── */
.guide-vars-grid[b-3iv8kd9m6i] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.5rem;
    margin: 0.75rem 0;
}

.guide-var[b-3iv8kd9m6i] {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 0.85rem;
    background: var(--surface-ground, #f8f9fa);
    border-radius: 0.6rem;
    border: 1px solid var(--border-color-light, #e9ecef);
}

.guide-var code[b-3iv8kd9m6i] {
    background: rgba(13, 110, 253, 0.1);
    color: var(--color-primary, #0d6efd);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
}

.guide-var span[b-3iv8kd9m6i] {
    font-size: 0.82rem;
    color: var(--text-muted, #6c757d);
}

/* ── Two Column Layout ── */
.guide-two-cols[b-3iv8kd9m6i] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1rem 0;
}

.guide-col-card[b-3iv8kd9m6i] {
    border: 1px solid var(--border-color-light, #e9ecef);
    border-radius: 0.85rem;
    overflow: hidden;
}

.guide-col-header[b-3iv8kd9m6i] {
    padding: 0.85rem 1rem;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.guide-col-body[b-3iv8kd9m6i] {
    padding: 1rem;
}

.guide-col-body p[b-3iv8kd9m6i] {
    margin: 0 0 0.65rem;
    font-size: 0.88rem;
    color: var(--text-secondary, #495057);
}

.guide-col-body ul[b-3iv8kd9m6i] {
    margin: 0;
    padding-right: 1.25rem;
    list-style: none;
}

.guide-col-body ul li[b-3iv8kd9m6i] {
    font-size: 0.85rem;
    color: var(--text-secondary, #495057);
    padding: 0.2rem 0;
    position: relative;
}

.guide-col-body ul li[b-3iv8kd9m6i]::before {
    content: '•';
    color: var(--color-primary, #0d6efd);
    font-weight: bold;
    position: absolute;
    right: -1rem;
}

/* ── Config Sections ── */
.guide-config-sections[b-3iv8kd9m6i] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.guide-config-card[b-3iv8kd9m6i] {
    padding: 1.25rem;
    background: var(--surface-ground, #f8f9fa);
    border-radius: 0.85rem;
    border: 1px solid var(--border-color-light, #e9ecef);
}

.guide-config-card h3[b-3iv8kd9m6i] {
    margin: 0 0 0.85rem;
    font-size: 1rem;
    color: var(--text-primary, #212529);
}

.guide-config-card h3 i[b-3iv8kd9m6i] {
    margin-left: 0.5rem;
    color: var(--color-primary, #0d6efd);
}

/* ── Tip Box ── */
.guide-tip[b-3iv8kd9m6i] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: rgba(13, 110, 253, 0.06);
    border-radius: 0.65rem;
    border-right: 3px solid var(--color-primary, #0d6efd);
    margin-top: 1rem;
}

.guide-tip i[b-3iv8kd9m6i] {
    color: var(--color-primary, #0d6efd);
    font-size: 1.1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.guide-tip span[b-3iv8kd9m6i] {
    font-size: 0.85rem;
    color: var(--text-secondary, #495057);
    line-height: 1.6;
}

/* ── Warning / Important Note ── */
.guide-note[b-3iv8kd9m6i] {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
    margin: 2rem 0 1.5rem;
}

.guide-note-warning[b-3iv8kd9m6i] {
    background: rgba(255, 193, 7, 0.08);
    border: 1px solid rgba(255, 193, 7, 0.25);
}

.guide-note-icon[b-3iv8kd9m6i] {
    font-size: 2rem;
    flex-shrink: 0;
    color: #ffc107;
}

.guide-note h3[b-3iv8kd9m6i] {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary, #212529);
}

.guide-note ul[b-3iv8kd9m6i] {
    margin: 0;
    padding-right: 1.25rem;
}

.guide-note ul li[b-3iv8kd9m6i] {
    font-size: 0.88rem;
    color: var(--text-secondary, #495057);
    padding: 0.25rem 0;
    line-height: 1.65;
}

/* ── Footer ── */
.guide-footer[b-3iv8kd9m6i] {
    text-align: center;
    padding: 1.5rem;
    color: var(--text-muted, #6c757d);
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.guide-footer i[b-3iv8kd9m6i] {
    color: #dc3545;
    font-size: 0.85rem;
}

/* ── Responsive ── */
@@media (max-width: 768px) {
    .guide-welcome[b-3iv8kd9m6i] {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .guide-nav-grid[b-3iv8kd9m6i] {
        grid-template-columns: repeat(2, 1fr);
    }

    .guide-two-cols[b-3iv8kd9m6i] {
        grid-template-columns: 1fr;
    }

    .guide-field[b-3iv8kd9m6i] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }

    .field-name[b-3iv8kd9m6i] {
        min-width: unset;
    }

    .guide-vars-grid[b-3iv8kd9m6i] {
        grid-template-columns: 1fr;
    }
}
/* _content/JIrlee.Panel.UI/Pages/Dashboard/Bot/BotLanguageIcons.razor.rz.scp.css */
/* ═══════════════════════════════════════
   Language Icons — Scoped Styles
   ═══════════════════════════════════════ */

.icon-grid[b-phbni6phjm] {
    background: var(--card-bg, #1e293b);
    border: 1px solid var(--border-color, rgba(255,255,255,0.06));
    border-radius: 12px;
    overflow: hidden;
}

.icon-header[b-phbni6phjm] {
    display: grid;
    grid-template-columns: 1fr 80px 120px;
    padding: 12px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted, #64748b);
    border-bottom: 1px solid var(--border-color, rgba(255,255,255,0.06));
}

.icon-row[b-phbni6phjm] {
    display: grid;
    grid-template-columns: 1fr 80px 120px;
    padding: 10px 20px;
    align-items: center;
    border-bottom: 1px solid var(--border-color, rgba(255,255,255,0.03));
    transition: background var(--duration, 0.20s) var(--ease, ease);
}

.icon-row:hover[b-phbni6phjm] {
    background: color-mix(in srgb, var(--brand, #6366f1) 4%, transparent);
}

.icon-row:last-child[b-phbni6phjm] {
    border-bottom: none;
}

.icon-key[b-phbni6phjm] {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.85rem;
    color: var(--text-primary, #e2e8f0);
}

.icon-emoji[b-phbni6phjm] {
    font-size: 1.3rem;
    text-align: center;
    transition: transform var(--duration, 0.25s) var(--ease-spring, cubic-bezier(0.34, 1.56, 0.64, 1));
}

.icon-row:hover .icon-emoji[b-phbni6phjm] {
    transform: scale(1.25);
}
/* _content/JIrlee.Panel.UI/Pages/Dashboard/Bot/BotLevels.razor.rz.scp.css */
/* ═══════════════════════════════════════
   Bot Levels — Scoped Styles
   ═══════════════════════════════════════ */

.lvl-section[b-shme5tm893] {
    background: var(--card-bg, #1e293b);
    border: 1px solid var(--border-color, rgba(255,255,255,0.06));
    border-radius: 12px;
    overflow: hidden;
}

.lvl-section-header[b-shme5tm893] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary, #e2e8f0);
    border-bottom: 1px solid var(--border-color, rgba(255,255,255,0.06));
}

.lvl-section-header i[b-shme5tm893] {
    margin-right: 8px;
    color: var(--brand, #6366f1);
}

.lvl-table[b-shme5tm893] {
    width: 100%;
}

.lvl-table-header[b-shme5tm893] {
    display: grid;
    grid-template-columns: 60px 60px 1fr 100px 120px;
    padding: 10px 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted, #64748b);
    border-bottom: 1px solid var(--border-color, rgba(255,255,255,0.06));
}

.lvl-row[b-shme5tm893] {
    display: grid;
    grid-template-columns: 60px 60px 1fr 100px 120px;
    padding: 10px 20px;
    align-items: center;
    border-bottom: 1px solid var(--border-color, rgba(255,255,255,0.03));
    color: var(--text-primary, #e2e8f0);
    font-size: 0.88rem;
    transition: background var(--duration, 0.20s) var(--ease, ease);
}

.lvl-row:hover[b-shme5tm893] {
    background: color-mix(in srgb, var(--brand, #6366f1) 4%, transparent);
}

.lvl-row:last-child[b-shme5tm893] {
    border-bottom: none;
}

.lvl-num[b-shme5tm893] {
    font-weight: 600;
    color: var(--brand, #6366f1);
}

.lvl-icon[b-shme5tm893] {
    font-size: 1.2rem;
    text-align: center;
    transition: transform var(--duration, 0.25s) var(--ease-spring, cubic-bezier(0.34, 1.56, 0.64, 1));
}

.lvl-row:hover .lvl-icon[b-shme5tm893] {
    transform: scale(1.2) rotate(-4deg);
}

.lvl-xp[b-shme5tm893] {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.82rem;
    color: var(--text-muted, #94a3b8);
}

/* User Tags table uses 4 columns */
.lvl-section:last-of-type .lvl-table-header[b-shme5tm893],
.lvl-section:last-of-type .lvl-row[b-shme5tm893] {
    grid-template-columns: 120px 160px 1fr 120px;
}

[b-shme5tm893] .bot-btn-sm {
    padding: 6px 12px;
    font-size: 0.78rem;
}
/* _content/JIrlee.Panel.UI/Pages/Dashboard/Bot/BotStringEditor.razor.rz.scp.css */
/* ═══════════════════════════════════════
   Bot Strings — Scoped Styles
   ═══════════════════════════════════════ */

.str-section[b-ub5fpakccn] {
    background: var(--card-bg, #1e293b);
    border: 1px solid var(--border-color, rgba(255,255,255,0.06));
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: border-color var(--duration, 0.25s) var(--ease, ease),
                box-shadow var(--duration, 0.25s) var(--ease, ease);
}

.str-section:hover[b-ub5fpakccn] {
    border-color: color-mix(in srgb, var(--brand, #6366f1) 15%, transparent);
    box-shadow: 0 2px 12px color-mix(in srgb, var(--brand, #6366f1) 5%, transparent);
}

.str-section-header[b-ub5fpakccn] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary, #e2e8f0);
    border-bottom: 1px solid var(--border-color, rgba(255,255,255,0.04));
    transition: background 0.15s;
}

.str-section-header:hover[b-ub5fpakccn] {
    background: color-mix(in srgb, var(--brand, #6366f1) 5%, transparent);
}

.str-section-header i[b-ub5fpakccn] {
    font-size: 0.75rem;
    color: var(--text-muted, #64748b);
    width: 16px;
    text-align: center;
    transition: transform 0.25s var(--ease-spring, cubic-bezier(0.34, 1.56, 0.64, 1));
}

.str-count[b-ub5fpakccn] {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--text-muted, #64748b);
    font-weight: 400;
}

.str-collapsed .str-section-body[b-ub5fpakccn] {
    display: none;
}

@supports (field-sizing: content) {
    .str-textarea[b-ub5fpakccn] {
        field-sizing: content;
        min-height: 72px;
        max-height: 240px;
    }
}

.str-section-body[b-ub5fpakccn] {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.str-field[b-ub5fpakccn] {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 12px;
    align-items: start;
}

.str-label[b-ub5fpakccn] {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary, #94a3b8);
    padding-top: 8px;
}

.str-textarea[b-ub5fpakccn] {
    min-height: 72px;
    resize: vertical;
}

.str-hint[b-ub5fpakccn] {
    grid-column: 2;
    font-size: 0.75rem;
    color: var(--text-muted, #64748b);
    margin-top: -6px;
}

@@media (max-width: 768px) {
    .str-field[b-ub5fpakccn] {
        grid-template-columns: 1fr;
    }
    .str-label[b-ub5fpakccn] {
        padding-top: 0;
    }
}
/* _content/JIrlee.Panel.UI/Pages/Dashboard/Dectunary/Dictionary.razor.rz.scp.css */
/* ==============================================
   DICTIONARY � Advanced UX Enhancements
   1) Smart Search Experience
   2) Adaptive Result Cards
   3) Context-Aware Interaction Layer
   4) Focus Mode & Reading Comfort
   ============================================== */

/* ============================================
   0. SHARED KEYFRAMES & UTILITIES
   ============================================ */
@keyframes dict-fadeIn-b-i3vmo1th2l {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes dict-slideUp-b-i3vmo1th2l {
    from { opacity: 0; transform: translateY(16px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes dict-pulse-b-i3vmo1th2l {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.5; }
}
@keyframes dict-shimmer-b-i3vmo1th2l {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes dict-searchGlow-b-i3vmo1th2l {
    0%, 100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); }
    50%      { box-shadow: 0 0 12px 2px rgba(99, 102, 241, 0.15); }
}
@keyframes dict-ripple-b-i3vmo1th2l {
    to { transform: scale(2.5); opacity: 0; }
}
@keyframes dict-focusEnter-b-i3vmo1th2l {
    from { backdrop-filter: blur(0px); background: transparent; }
    to   { backdrop-filter: blur(2px); background: rgba(0,0,0,0.15); }
}
@keyframes dict-cardStagger-b-i3vmo1th2l {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes dict-heartBeat-b-i3vmo1th2l {
    0%   { transform: scale(1); }
    15%  { transform: scale(1.25); }
    30%  { transform: scale(1); }
    45%  { transform: scale(1.15); }
    60%  { transform: scale(1); }
}
@keyframes dict-copyFlash-b-i3vmo1th2l {
    0%   { background: rgba(16, 185, 129, 0.25); }
    100% { background: transparent; }
}
@keyframes dict-underlineDraw-b-i3vmo1th2l {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

/* ============================================
   1. SMART SEARCH EXPERIENCE
   ============================================ */

/* Search wrapper with animated underline */
.dict-search-wrapper[b-i3vmo1th2l] {
    position: relative;
    margin-bottom: 12px;
}

.dict-search-wrapper input[b-i3vmo1th2l] {
    width: 100%;
    padding: 11px 40px 11px 38px;
    background: var(--surface-raised);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    transition: border-color 200ms ease,
                box-shadow 200ms ease,
                background 200ms ease;
    outline: none;
}

.dict-search-wrapper input[b-i3vmo1th2l]::placeholder {
    color: var(--text-muted);
    transition: color 200ms ease;
}

.dict-search-wrapper input:hover[b-i3vmo1th2l] {
    border-color: var(--border-strong);
}

.dict-search-wrapper input:focus[b-i3vmo1th2l] {
    border-color: var(--brand);
    box-shadow: var(--ring-brand);
    background: rgba(99, 102, 241, 0.03);
}

.dict-search-wrapper input:focus[b-i3vmo1th2l]::placeholder {
    color: transparent;
}

/* Search icon */
.dict-search-icon[b-i3vmo1th2l] {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 13px;
    pointer-events: none;
    transition: color 200ms ease, transform 200ms ease;
}

.dict-search-wrapper input:focus ~ .dict-search-icon[b-i3vmo1th2l] {
    color: var(--brand);
    transform: translateY(-50%) scale(1.1);
}

/* Animated underline bar */
.dict-search-underline[b-i3vmo1th2l] {
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--brand-gradient);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center;
}

.dict-search-wrapper input:focus ~ .dict-search-underline[b-i3vmo1th2l] {
    transform: scaleX(1);
}

/* Clear button */
.dict-search-clear[b-i3vmo1th2l] {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 12px;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: var(--radius-sm);
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease, color 200ms ease, background 150ms ease;
}

.dict-search-wrapper.has-value .dict-search-clear[b-i3vmo1th2l] {
    opacity: 1;
    pointer-events: auto;
}

.dict-search-clear:hover[b-i3vmo1th2l] {
    color: var(--text-primary);
    background: var(--surface-interactive-hover);
}

/* Search hint */
.dict-search-hint[b-i3vmo1th2l] {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
    padding-left: 2px;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 250ms ease, transform 250ms ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dict-search-wrapper input:focus ~ .dict-search-hint[b-i3vmo1th2l] {
    opacity: 1;
    transform: translateY(0);
}

.dict-search-hint i[b-i3vmo1th2l] {
    color: var(--brand);
    font-size: 10px;
}

/* Result count badge */
.dict-result-count[b-i3vmo1th2l] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    padding: 3px 10px;
    background: var(--surface-card);
    border-radius: var(--radius-full);
    border: 1px solid var(--border-subtle);
    margin-bottom: 8px;
    animation: dict-fadeIn-b-i3vmo1th2l 300ms ease both;
}

.dict-result-count i[b-i3vmo1th2l] {
    color: var(--brand);
    font-size: 9px;
}

/* Keyword highlight inside cards */
.dict-highlight[b-i3vmo1th2l] {
    background: rgba(99, 102, 241, 0.18);
    color: var(--brand-hover);
    padding: 0 3px;
    border-radius: 3px;
    font-weight: 600;
}

/* ============================================
   2. ADAPTIVE RESULT CARDS
   ============================================ */
.dict-card[b-i3vmo1th2l] {
    background: var(--surface-raised);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    transition: border-color 200ms ease,
                box-shadow 250ms ease,
                transform 200ms cubic-bezier(0.34, 1.56, 0.64, 1),
                background 200ms ease;
    animation: dict-cardStagger-b-i3vmo1th2l 400ms ease both;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dict-card:nth-child(1)[b-i3vmo1th2l] { animation-delay: 0ms; }
.dict-card:nth-child(2)[b-i3vmo1th2l] { animation-delay: 40ms; }
.dict-card:nth-child(3)[b-i3vmo1th2l] { animation-delay: 80ms; }
.dict-card:nth-child(4)[b-i3vmo1th2l] { animation-delay: 120ms; }
.dict-card:nth-child(5)[b-i3vmo1th2l] { animation-delay: 160ms; }
.dict-card:nth-child(6)[b-i3vmo1th2l] { animation-delay: 200ms; }
.dict-card:nth-child(7)[b-i3vmo1th2l] { animation-delay: 240ms; }
.dict-card:nth-child(8)[b-i3vmo1th2l] { animation-delay: 280ms; }

.dict-card:hover[b-i3vmo1th2l] {
    border-color: var(--border-interactive);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(99, 102, 241, 0.08);
    transform: translateY(-2px);
    background: var(--surface-card-hover);
}

/* Accent bar on the left */
.dict-card[b-i3vmo1th2l]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: var(--brand-gradient);
    opacity: 0;
    transform: scaleY(0.3);
    transition: opacity 250ms ease, transform 250ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dict-card:hover[b-i3vmo1th2l]::before {
    opacity: 1;
    transform: scaleY(1);
}

/* Card header row */
.dict-card-header[b-i3vmo1th2l] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

/* Primary word */
.dict-card-word[b-i3vmo1th2l] {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    line-height: 1.3;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Match badge */
.dict-match-badge[b-i3vmo1th2l] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    flex-shrink: 0;
}

.dict-match-badge.exact[b-i3vmo1th2l] {
    background: var(--success-muted);
    color: var(--success);
}

.dict-match-badge.partial[b-i3vmo1th2l] {
    background: var(--warning-muted);
    color: var(--warning);
}

/* Metadata chips row */
.dict-card-meta[b-i3vmo1th2l] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.dict-chip[b-i3vmo1th2l] {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 11.5px;
    font-weight: 500;
    border: 1px solid var(--border-subtle);
    background: var(--surface-card);
    color: var(--text-secondary);
    transition: border-color 150ms ease, background 150ms ease, color 150ms ease;
    line-height: 1.4;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dict-chip:hover[b-i3vmo1th2l] {
    border-color: var(--border-interactive);
    background: var(--brand-muted);
    color: var(--text-primary);
}

.dict-chip i[b-i3vmo1th2l] {
    font-size: 10px;
    flex-shrink: 0;
}

.dict-chip.chip-lang[b-i3vmo1th2l] {
    border-color: rgba(99, 102, 241, 0.25);
    color: var(--brand-hover);
}

.dict-chip.chip-lang i[b-i3vmo1th2l] {
    color: var(--brand);
}

.dict-chip.chip-syn[b-i3vmo1th2l] {
    border-color: rgba(16, 185, 129, 0.25);
    color: var(--success);
}

.dict-chip.chip-syn i[b-i3vmo1th2l] {
    color: var(--success);
}

.dict-chip.chip-opp[b-i3vmo1th2l] {
    border-color: rgba(245, 158, 11, 0.25);
    color: var(--warning);
}

.dict-chip.chip-opp i[b-i3vmo1th2l] {
    color: var(--warning);
}

.dict-chip.chip-type[b-i3vmo1th2l] {
    border-color: rgba(59, 130, 246, 0.25);
    color: var(--info);
}

.dict-chip.chip-type i[b-i3vmo1th2l] {
    color: var(--info);
}

/* Separator inside card */
.dict-card-divider[b-i3vmo1th2l] {
    height: 1px;
    background: var(--border-subtle);
    margin: 2px 0;
}

/* Empty state */
.dict-empty[b-i3vmo1th2l] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 12px;
    color: var(--text-muted);
    animation: dict-fadeIn-b-i3vmo1th2l 400ms ease both;
}

.dict-empty i[b-i3vmo1th2l] {
    font-size: 32px;
    opacity: 0.3;
}

.dict-empty span[b-i3vmo1th2l] {
    font-size: 13px;
    font-weight: 500;
}

/* RTL support for cards */
[dir="rtl"] .dict-card[b-i3vmo1th2l]::before {
    left: auto;
    right: 0;
    border-radius: 3px 0 0 3px;
}

[dir="rtl"] .dict-chip[b-i3vmo1th2l] {
    direction: rtl;
}

/* ============================================
   3. CONTEXT-AWARE INTERACTION LAYER
   ============================================ */
.dict-card-actions[b-i3vmo1th2l] {
    display: flex;
    gap: 4px;
    align-items: center;
    flex-shrink: 0;
}

/* Base micro-action button */
.dict-micro-btn[b-i3vmo1th2l] {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text-muted);
    font-size: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 150ms ease, background 150ms ease, transform 150ms cubic-bezier(0.34, 1.56, 0.64, 1);
    -webkit-tap-highlight-color: transparent;
    opacity: 0;
    transform: scale(0.85);
}

.dict-card:hover .dict-micro-btn[b-i3vmo1th2l] {
    opacity: 1;
    transform: scale(1);
}

/* For touch devices, always visible */
@media (hover: none) {
    .dict-micro-btn[b-i3vmo1th2l] {
        opacity: 1;
        transform: scale(1);
    }
}

.dict-micro-btn:hover[b-i3vmo1th2l] {
    background: var(--surface-interactive-hover);
    color: var(--text-primary);
    transform: scale(1.15);
}

.dict-micro-btn:active[b-i3vmo1th2l] {
    transform: scale(0.9);
    transition-duration: 80ms;
}

/* Copy button */
.dict-micro-btn.btn-copy:hover[b-i3vmo1th2l] {
    color: var(--success);
    background: var(--success-muted);
}

.dict-micro-btn.btn-copy.copied[b-i3vmo1th2l] {
    color: var(--success);
    animation: dict-copyFlash-b-i3vmo1th2l 600ms ease;
}

/* Favorite button */
.dict-micro-btn.btn-fav:hover[b-i3vmo1th2l] {
    color: #f472b6;
    background: rgba(244, 114, 182, 0.12);
}

.dict-micro-btn.btn-fav.is-fav[b-i3vmo1th2l] {
    color: #f472b6;
    opacity: 1;
    transform: scale(1);
}

.dict-micro-btn.btn-fav.is-fav:hover[b-i3vmo1th2l] {
    animation: dict-heartBeat-b-i3vmo1th2l 600ms ease;
}

/* Share button */
.dict-micro-btn.btn-share:hover[b-i3vmo1th2l] {
    color: var(--info);
    background: var(--info-muted);
}

/* CRUD action buttons (inside cards) */
.dict-card-crud[b-i3vmo1th2l] {
    display: flex;
    gap: 4px;
    align-items: center;
    margin-left: auto;
}

.dict-crud-btn[b-i3vmo1th2l] {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    background: transparent;
    font-size: 12px;
    cursor: pointer;
    transition: all 150ms cubic-bezier(0.34, 1.56, 0.64, 1);
    -webkit-tap-highlight-color: transparent;
}

.dict-crud-btn:hover[b-i3vmo1th2l] {
    transform: scale(1.12);
}

.dict-crud-btn:active[b-i3vmo1th2l] {
    transform: scale(0.9);
}

.dict-crud-btn.btn-edit[b-i3vmo1th2l] {
    color: var(--success);
    border-color: rgba(16, 185, 129, 0.2);
    background: var(--success-muted);
}

.dict-crud-btn.btn-edit:hover[b-i3vmo1th2l] {
    background: var(--success);
    color: #fff;
    box-shadow: var(--success-glow);
}

.dict-crud-btn.btn-delete[b-i3vmo1th2l] {
    color: var(--danger);
    border-color: rgba(239, 68, 68, 0.2);
    background: var(--danger-muted);
}

.dict-crud-btn.btn-delete:hover[b-i3vmo1th2l] {
    background: var(--danger);
    color: #fff;
    box-shadow: var(--danger-glow);
}

.dict-crud-btn.btn-settings[b-i3vmo1th2l] {
    color: var(--text-muted);
    border-color: var(--border-subtle);
    background: var(--surface-card);
}

.dict-crud-btn.btn-settings:hover[b-i3vmo1th2l] {
    color: var(--brand-hover);
    background: var(--brand-muted);
}

.dict-crud-btn.btn-accept[b-i3vmo1th2l] {
    color: var(--success);
    border-color: rgba(16, 185, 129, 0.2);
    background: var(--success-muted);
}

.dict-crud-btn.btn-accept:hover[b-i3vmo1th2l] {
    background: var(--success);
    color: #fff;
    box-shadow: var(--success-glow);
}

.dict-crud-btn.btn-reject[b-i3vmo1th2l] {
    color: var(--danger);
    border-color: rgba(239, 68, 68, 0.2);
    background: var(--danger-muted);
}

.dict-crud-btn.btn-reject:hover[b-i3vmo1th2l] {
    background: var(--danger);
    color: #fff;
    box-shadow: var(--danger-glow);
}

/* Tooltip-style label on hover */
.dict-micro-btn[title][b-i3vmo1th2l]::after {
    content: attr(title);
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    font-size: 10px;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--surface-overlay);
    border: 1px solid var(--border-default);
    border-radius: 4px;
    padding: 2px 8px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 200ms ease, transform 200ms ease;
    z-index: 10;
}

.dict-micro-btn[title]:hover[b-i3vmo1th2l]::after {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

/* ============================================
   4. FOCUS MODE & READING COMFORT
   ============================================ */

/* Focus toggle button */
.dict-focus-toggle[b-i3vmo1th2l] {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-default);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text-muted);
    font-size: 13px;
    cursor: pointer;
    transition: all 200ms ease;
    -webkit-tap-highlight-color: transparent;
    margin-left: 4px;
}

.dict-focus-toggle:hover[b-i3vmo1th2l] {
    border-color: var(--brand);
    color: var(--brand);
    background: var(--brand-muted);
}

.dict-focus-toggle.active[b-i3vmo1th2l] {
    background: var(--brand-gradient);
    border-color: var(--brand);
    color: #fff;
    box-shadow: 0 2px 12px rgba(99, 102, 241, 0.35);
}

/* Focus mode applied to .column */
.column.dict-focus-mode[b-i3vmo1th2l] {
    background: var(--surface-base);
    border-color: rgba(99, 102, 241, 0.2);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.08), 0 8px 32px rgba(0, 0, 0, 0.3);
    max-height: none;
    z-index: 5;
    position: relative;
}

/* In focus mode, enhance typography */
.column.dict-focus-mode .dict-card[b-i3vmo1th2l] {
    padding: 20px 22px;
    gap: 14px;
}

.column.dict-focus-mode .dict-card-word[b-i3vmo1th2l] {
    font-size: 19px;
    line-height: 1.5;
    letter-spacing: -0.015em;
}

.column.dict-focus-mode .dict-chip[b-i3vmo1th2l] {
    font-size: 12.5px;
    padding: 5px 12px;
}

.column.dict-focus-mode .dict-card-meta[b-i3vmo1th2l] {
    gap: 8px;
}

/* Dim sibling columns when one is in focus mode */
.content:has(.dict-focus-mode) .column:not(.dict-focus-mode)[b-i3vmo1th2l] {
    opacity: 0.35;
    filter: blur(1px);
    pointer-events: none;
    transition: opacity 400ms ease, filter 400ms ease;
}

/* Reading comfort overrides in focus mode */
.column.dict-focus-mode .list[b-i3vmo1th2l] {
    max-height: none;
    overflow-y: auto;
}

.column.dict-focus-mode .list > div[b-i3vmo1th2l],
.column.dict-focus-mode .dict-card[b-i3vmo1th2l] {
    line-height: 1.75;
}

/* Smooth transition for entering / exiting focus mode */
.column[b-i3vmo1th2l] {
    transition: border-color 300ms ease,
                box-shadow 300ms ease,
                background 300ms ease,
                opacity 400ms ease,
                filter 400ms ease;
}

/* Focus mode indicator */
.dict-focus-label[b-i3vmo1th2l] {
    display: none;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--brand-hover);
    padding: 4px 12px;
    background: var(--brand-muted);
    border-radius: var(--radius-full);
    border: 1px solid rgba(99, 102, 241, 0.2);
    margin-bottom: 8px;
    animation: dict-fadeIn-b-i3vmo1th2l 300ms ease both;
}

.column.dict-focus-mode .dict-focus-label[b-i3vmo1th2l] {
    display: inline-flex;
}

.dict-focus-label i[b-i3vmo1th2l] {
    font-size: 10px;
}

/* ============================================
   5. RESPONSIVE REFINEMENTS
   ============================================ */
@media (max-width: 1024px) {
    .dict-card-actions[b-i3vmo1th2l] {
        gap: 2px;
    }

    .dict-micro-btn[b-i3vmo1th2l] {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

    .dict-card-word[b-i3vmo1th2l] {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .dict-card[b-i3vmo1th2l] {
        padding: 14px 14px;
    }

    .dict-card-word[b-i3vmo1th2l] {
        font-size: 14px;
    }

    .dict-chip[b-i3vmo1th2l] {
        font-size: 10.5px;
        padding: 3px 8px;
    }

    .dict-micro-btn[b-i3vmo1th2l] {
        opacity: 1;
        transform: scale(1);
    }

    /* Undo sibling dimming on mobile */
    .content:has(.dict-focus-mode) .column:not(.dict-focus-mode)[b-i3vmo1th2l] {
        opacity: 1;
        filter: none;
        pointer-events: auto;
    }
}

/* ============================================
   6. SCROLLBAR REFINEMENT (for word list)
   ============================================ */
.dict-scroll[b-i3vmo1th2l]::-webkit-scrollbar {
    width: 5px;
}

.dict-scroll[b-i3vmo1th2l]::-webkit-scrollbar-track {
    background: transparent;
}

.dict-scroll[b-i3vmo1th2l]::-webkit-scrollbar-thumb {
    background: var(--border-default);
    border-radius: 4px;
}

.dict-scroll[b-i3vmo1th2l]::-webkit-scrollbar-thumb:hover {
    background: var(--border-strong);
}

/* ============================================
   7. ACCESSIBILITY
   ============================================ */
.dict-micro-btn:focus-visible[b-i3vmo1th2l],
.dict-crud-btn:focus-visible[b-i3vmo1th2l],
.dict-focus-toggle:focus-visible[b-i3vmo1th2l] {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
}

.dict-card:focus-within[b-i3vmo1th2l] {
    border-color: var(--border-interactive);
}

@media (prefers-reduced-motion: reduce) {
    .dict-card[b-i3vmo1th2l],
    .dict-micro-btn[b-i3vmo1th2l],
    .dict-search-underline[b-i3vmo1th2l],
    .dict-search-hint[b-i3vmo1th2l] {
        animation: none !important;
        transition-duration: 0.01ms !important;
    }
}
/* _content/JIrlee.Panel.UI/Pages/Dashboard/PendingReports.razor.rz.scp.css */
/* ═══════════════════════════════════════════
   PendingReports — Scoped Styles
   Uses global design tokens from Style.css
   ═══════════════════════════════════════════ */

/* ── Hero Banner ── */
.pr-hero[b-7ry4vah02y] {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    margin-bottom: 24px;
    background: var(--surface-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.pr-hero[b-7ry4vah02y]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--warning), var(--success));
    opacity: 0.8;
}

.pr-hero-icon[b-7ry4vah02y] {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--brand-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pr-hero-icon i[b-7ry4vah02y] {
    font-size: 22px;
    color: var(--brand);
}

.pr-hero-text[b-7ry4vah02y] {
    flex: 1;
    min-width: 0;
}

.pr-hero-text h2[b-7ry4vah02y] {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.pr-hero-text p[b-7ry4vah02y] {
    margin: 0;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.pr-refresh-btn[b-7ry4vah02y] {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-default);
    background: var(--surface-interactive);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-fast) var(--ease);
    flex-shrink: 0;
}

.pr-refresh-btn:hover[b-7ry4vah02y] {
    background: var(--brand-muted);
    border-color: var(--brand);
    color: var(--brand);
    box-shadow: var(--shadow-sm);
}

.pr-refresh-btn:active[b-7ry4vah02y] {
    transform: scale(0.93);
}

/* ── Stats Bar ── */
.pr-stats[b-7ry4vah02y] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}

.pr-stat-card[b-7ry4vah02y] {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    background: var(--surface-card);
    border: 1px solid var(--border-subtle);
    transition: all var(--duration-fast) var(--ease);
    position: relative;
    overflow: hidden;
}

.pr-stat-card[b-7ry4vah02y]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    opacity: 0;
    transition: opacity var(--duration-fast) var(--ease);
}

.pr-stat-card:hover[b-7ry4vah02y] {
    border-color: var(--border-default);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

.pr-stat-card:hover[b-7ry4vah02y]::after {
    opacity: 1;
}

.pr-stat-icon[b-7ry4vah02y] {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

/* Pending card */
.pr-stat-pending .pr-stat-icon[b-7ry4vah02y] {
    background: var(--warning-muted);
    color: var(--warning);
}
.pr-stat-pending[b-7ry4vah02y]::after { background: var(--warning); }

/* Accepted card */
.pr-stat-accepted .pr-stat-icon[b-7ry4vah02y] {
    background: var(--success-muted);
    color: var(--success);
}
.pr-stat-accepted[b-7ry4vah02y]::after { background: var(--success); }

/* Rejected card */
.pr-stat-rejected .pr-stat-icon[b-7ry4vah02y] {
    background: var(--danger-muted);
    color: var(--danger);
}
.pr-stat-rejected[b-7ry4vah02y]::after { background: var(--danger); }

/* Total card */
.pr-stat-total .pr-stat-icon[b-7ry4vah02y] {
    background: var(--info-muted);
    color: var(--info);
}
.pr-stat-total[b-7ry4vah02y]::after { background: var(--info); }

.pr-stat-body[b-7ry4vah02y] {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.pr-stat-num[b-7ry4vah02y] {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.pr-stat-label[b-7ry4vah02y] {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-top: 2px;
}

/* ── Loading ── */
.pr-loading[b-7ry4vah02y] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 80px 0;
    color: var(--text-muted);
    font-size: 14px;
}

.pr-loading-spinner[b-7ry4vah02y] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid var(--border-default);
    border-top-color: var(--brand);
    animation: prSpin-b-7ry4vah02y 0.8s linear infinite;
}

@keyframes prSpin-b-7ry4vah02y {
    to { transform: rotate(360deg); }
}

/* ── Empty State ── */
.pr-empty[b-7ry4vah02y] {
    text-align: center;
    padding: 80px 20px;
}

.pr-empty-icon[b-7ry4vah02y] {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--success-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: prPulseGlow-b-7ry4vah02y 2s ease-in-out infinite;
}

.pr-empty-icon i[b-7ry4vah02y] {
    font-size: 36px;
    color: var(--success);
}

@keyframes prPulseGlow-b-7ry4vah02y {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.15); }
    50% { box-shadow: 0 0 0 16px rgba(16, 185, 129, 0); }
}

.pr-empty h3[b-7ry4vah02y] {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.pr-empty p[b-7ry4vah02y] {
    margin: 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.pr-empty-sub[b-7ry4vah02y] {
    margin-top: 4px !important;
    font-size: 12px !important;
    color: var(--text-muted) !important;
}

/* ── Card Grid ── */
.pr-grid[b-7ry4vah02y] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 16px;
}

.pr-card[b-7ry4vah02y] {
    background: var(--surface-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 0;
    position: relative;
    transition: all var(--duration) var(--ease);
    animation: prCardEnter-b-7ry4vah02y var(--duration-slow) var(--ease-out-expo) both;
    overflow: hidden;
}

@keyframes prCardEnter-b-7ry4vah02y {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.pr-card:hover[b-7ry4vah02y] {
    border-color: var(--border-interactive);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* Card number tag */
.pr-card-number[b-7ry4vah02y] {
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    background: var(--surface-interactive);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
}

/* Parent translation context banner */
.pr-card-context[b-7ry4vah02y] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--brand-muted);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.pr-card-context i[b-7ry4vah02y] {
    color: var(--brand);
    font-size: 13px;
    flex-shrink: 0;
}

.pr-card-context strong[b-7ry4vah02y] {
    color: var(--brand);
    font-weight: 700;
}

/* Card Header */
.pr-card-header[b-7ry4vah02y] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 18px 18px 10px;
    gap: 12px;
}

.pr-card-word[b-7ry4vah02y] {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    word-break: break-word;
    line-height: 1.3;
    padding-right: 40px;
}

.pr-card-date[b-7ry4vah02y] {
    font-size: 11px;
    color: var(--text-muted);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
    position: absolute;
    bottom: 62px;
    right: 18px;
}

/* Meta Chips */
.pr-card-meta[b-7ry4vah02y] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0 18px 14px;
    min-height: 28px;
}

.pr-chip[b-7ry4vah02y] {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: transform var(--duration-fast) var(--ease);
}

.pr-chip:hover[b-7ry4vah02y] {
    transform: scale(1.04);
}

.pr-chip i[b-7ry4vah02y] {
    font-size: 9px;
    opacity: 0.8;
}

.pr-chip-syn[b-7ry4vah02y] {
    background: rgba(99, 102, 241, 0.1);
    color: var(--brand);
    border: 1px solid rgba(99, 102, 241, 0.15);
}

.pr-chip-opp[b-7ry4vah02y] {
    background: var(--warning-muted);
    color: var(--warning);
    border: 1px solid rgba(245, 158, 11, 0.15);
}

.pr-chip-lang[b-7ry4vah02y] {
    background: var(--success-muted);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.pr-chip-email[b-7ry4vah02y] {
    background: var(--surface-interactive);
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Card Actions */
.pr-card-actions[b-7ry4vah02y] {
    display: flex;
    gap: 0;
    border-top: 1px solid var(--border-subtle);
}

.pr-btn[b-7ry4vah02y] {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px 8px;
    border: none;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease);
    background: transparent;
    position: relative;
    letter-spacing: 0.2px;
}

.pr-btn[b-7ry4vah02y]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    opacity: 0;
    transition: opacity var(--duration-fast) var(--ease);
}

.pr-btn:hover[b-7ry4vah02y]::after {
    opacity: 1;
}

.pr-btn:active[b-7ry4vah02y] {
    transform: scale(0.96);
}

.pr-btn i[b-7ry4vah02y] {
    font-size: 13px;
}

/* Accept button */
.pr-btn-accept[b-7ry4vah02y] {
    color: var(--success);
}
.pr-btn-accept:hover[b-7ry4vah02y] {
    background: var(--success-muted);
}
.pr-btn-accept[b-7ry4vah02y]::after {
    background: var(--success);
}

/* Edit button */
.pr-btn-edit[b-7ry4vah02y] {
    color: var(--brand);
    border-left: 1px solid var(--border-subtle);
    border-right: 1px solid var(--border-subtle);
}
.pr-btn-edit:hover[b-7ry4vah02y] {
    background: var(--brand-muted);
}
.pr-btn-edit[b-7ry4vah02y]::after {
    background: var(--brand);
}

/* Reject button */
.pr-btn-reject[b-7ry4vah02y] {
    color: var(--danger);
}
.pr-btn-reject:hover[b-7ry4vah02y] {
    background: var(--danger-muted);
}
.pr-btn-reject[b-7ry4vah02y]::after {
    background: var(--danger);
}

/* ── Pagination ── */
.pr-pagination[b-7ry4vah02y] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    padding: 16px 0;
}

.pr-page-btn[b-7ry4vah02y] {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border-default);
    background: var(--surface-card);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-fast) var(--ease);
}

.pr-page-btn:hover:not(:disabled)[b-7ry4vah02y] {
    background: var(--brand-muted);
    border-color: var(--brand);
    color: var(--brand);
    box-shadow: var(--shadow-sm);
}

.pr-page-btn:disabled[b-7ry4vah02y] {
    opacity: 0.3;
    cursor: default;
}

.pr-page-btn:active:not(:disabled)[b-7ry4vah02y] {
    transform: scale(0.93);
}

.pr-page-info[b-7ry4vah02y] {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 0 12px;
    font-weight: 500;
}

.pr-page-info strong[b-7ry4vah02y] {
    color: var(--text-primary);
    font-weight: 700;
}

/* ── Modal Action Buttons (override global button) ── */
.pr-modal-actions[b-7ry4vah02y] {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.pr-modal-btn[b-7ry4vah02y] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease);
    width: auto;
}

.pr-modal-btn:hover[b-7ry4vah02y] {
    transform: translateY(-1px);
}

.pr-modal-btn:active[b-7ry4vah02y] {
    transform: scale(0.97);
}

.pr-modal-btn-accept[b-7ry4vah02y] {
    background: var(--success);
    color: #fff;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.pr-modal-btn-accept:hover[b-7ry4vah02y] {
    box-shadow: var(--success-glow);
    background: #0ea573;
}

.pr-modal-btn-cancel[b-7ry4vah02y] {
    background: var(--surface-interactive);
    color: var(--text-secondary);
    border: 1px solid var(--border-default);
}

.pr-modal-btn-cancel:hover[b-7ry4vah02y] {
    background: var(--surface-interactive-hover);
    border-color: var(--border-strong);
    color: var(--text-primary);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .pr-stats[b-7ry4vah02y] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pr-hero[b-7ry4vah02y] {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }

    .pr-hero-text h2[b-7ry4vah02y] { font-size: 16px; }

    .pr-stats[b-7ry4vah02y] {
        grid-template-columns: 1fr;
    }

    .pr-grid[b-7ry4vah02y] {
        grid-template-columns: 1fr;
    }

    .pr-card-actions[b-7ry4vah02y] {
        flex-wrap: wrap;
    }

    .pr-btn[b-7ry4vah02y] {
        min-width: 0;
    }

    .pr-pagination[b-7ry4vah02y] {
        gap: 4px;
    }

    .pr-page-btn[b-7ry4vah02y] {
        width: 34px;
        height: 34px;
    }
}
/* _content/JIrlee.Panel.UI/Pages/Dashboard/Roadmap.razor.rz.scp.css */
/* ==============================================
   ROADMAP PAGE — Kurdish Language Roadmap
   Beautiful RTL timeline with Kurdish typography
   ============================================== */

.roadmap-page[b-xqt6poga54] {
    font-family: 'Segoe UI', 'Noto Sans Arabic', 'Noto Sans Kurdish', 'Tahoma', sans-serif;
    direction: rtl;
    max-width: 900px;
    margin: 0 auto;
}

/* ── Hero Section ── */
.roadmap-hero[b-xqt6poga54] {
    text-align: center;
    padding: 48px 32px 40px;
    background: var(--gradient-primary);
    border-radius: 20px;
    color: #fff;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.roadmap-hero[b-xqt6poga54]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.roadmap-hero-icon[b-xqt6poga54] {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 28px;
}

.roadmap-hero h1[b-xqt6poga54] {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

.roadmap-hero-subtitle[b-xqt6poga54] {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0 0 8px 0;
}

.roadmap-hero-desc[b-xqt6poga54] {
    font-size: 0.95rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

.roadmap-stats-row[b-xqt6poga54] {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.roadmap-stat[b-xqt6poga54] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.roadmap-stat-num[b-xqt6poga54] {
    font-size: 2rem;
    font-weight: 800;
}

.roadmap-stat-label[b-xqt6poga54] {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ── Timeline ── */
.roadmap-timeline[b-xqt6poga54] {
    position: relative;
    padding: 0 0 24px 0;
}

.roadmap-phase[b-xqt6poga54] {
    display: flex;
    gap: 24px;
    margin-bottom: 0;
    position: relative;
}

.roadmap-phase-marker[b-xqt6poga54] {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 48px;
}

.phase-dot[b-xqt6poga54] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    background: var(--success);
    box-shadow: 0 0 0 4px var(--success-light);
    z-index: 2;
    flex-shrink: 0;
}

.phase-dot-active[b-xqt6poga54] {
    background: var(--accent, #3b82f6);
    box-shadow: 0 0 0 4px var(--accent-light, rgba(59, 130, 246, 0.15)), 0 0 20px rgba(59, 130, 246, 0.3);
    animation: pulse-dot-b-xqt6poga54 2s ease-in-out infinite;
}

.phase-dot-future[b-xqt6poga54] {
    background: var(--text-muted, #94a3b8);
    box-shadow: 0 0 0 4px var(--border, rgba(148, 163, 184, 0.2));
}

@keyframes pulse-dot-b-xqt6poga54 {
    0%, 100% { box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15), 0 0 20px rgba(59, 130, 246, 0.3); }
    50% { box-shadow: 0 0 0 8px rgba(59, 130, 246, 0.1), 0 0 30px rgba(59, 130, 246, 0.2); }
}

.phase-line[b-xqt6poga54] {
    width: 3px;
    flex: 1;
    min-height: 24px;
    border-radius: 2px;
}

.roadmap-phase.completed .phase-line[b-xqt6poga54] {
    background: linear-gradient(180deg, var(--success) 0%, var(--success) 100%);
    opacity: 0.3;
}

.roadmap-phase.active .phase-line[b-xqt6poga54] {
    background: linear-gradient(180deg, var(--accent, #3b82f6) 0%, var(--text-muted, #94a3b8) 100%);
    opacity: 0.3;
}

.roadmap-phase.future .phase-line[b-xqt6poga54] {
    display: none;
}

.roadmap-phase-content[b-xqt6poga54] {
    flex: 1;
    background: var(--card, #fff);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid var(--border, #e2e8f0);
    transition: box-shadow 0.3s, transform 0.3s;
}

.roadmap-phase-content:hover[b-xqt6poga54] {
    box-shadow: 0 8px 32px var(--shadow, rgba(0, 0, 0, 0.1));
    transform: translateY(-2px);
}

.roadmap-phase.active .roadmap-phase-content[b-xqt6poga54] {
    border-color: var(--accent, #3b82f6);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
}

.phase-header[b-xqt6poga54] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.phase-badge[b-xqt6poga54] {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.phase-badge-done[b-xqt6poga54] {
    background: var(--success-light);
    color: var(--success);
}

.phase-badge-active[b-xqt6poga54] {
    background: var(--accent-light, rgba(59, 130, 246, 0.1));
    color: var(--accent, #3b82f6);
    animation: badge-glow-b-xqt6poga54 2s ease-in-out infinite;
}

.phase-badge-future[b-xqt6poga54] {
    background: var(--border, rgba(148, 163, 184, 0.2));
    color: var(--text-muted, #94a3b8);
}

@keyframes badge-glow-b-xqt6poga54 {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.phase-number[b-xqt6poga54] {
    font-size: 0.8rem;
    color: var(--text-muted, #94a3b8);
    font-weight: 600;
}

.roadmap-phase-content h2[b-xqt6poga54] {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: var(--text, #1e293b);
}

.phase-date[b-xqt6poga54] {
    font-size: 0.85rem;
    color: var(--text-muted, #94a3b8);
    margin: 0 0 16px 0;
}

.phase-date i[b-xqt6poga54] {
    margin-left: 4px;
}

/* ── Phase Items ── */
.phase-items[b-xqt6poga54] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.phase-item[b-xqt6poga54] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--bg-secondary, #f8fafc);
    transition: background 0.2s;
}

.phase-item:hover[b-xqt6poga54] {
    background: var(--bg, #f1f5f9);
}

.phase-item > i[b-xqt6poga54] {
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.phase-item.done > i[b-xqt6poga54] {
    color: var(--success);
}

.phase-item.in-progress > i[b-xqt6poga54] {
    color: var(--accent, #3b82f6);
    animation: spin-half-b-xqt6poga54 2s ease-in-out infinite;
}

.phase-item.planned > i[b-xqt6poga54] {
    color: var(--text-muted, #94a3b8);
}

@keyframes spin-half-b-xqt6poga54 {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
    100% { transform: rotate(360deg); }
}

.phase-item div[b-xqt6poga54] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.phase-item strong[b-xqt6poga54] {
    font-size: 0.95rem;
    color: var(--text, #1e293b);
}

.phase-item span[b-xqt6poga54] {
    font-size: 0.82rem;
    color: var(--text-secondary, #64748b);
    line-height: 1.4;
}

/* ── Tech Stack Grid ── */
.roadmap-tech[b-xqt6poga54] {
    margin-top: 40px;
    margin-bottom: 32px;
}

.roadmap-tech h2[b-xqt6poga54] {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: var(--text, #1e293b);
    text-align: center;
}

.roadmap-tech h2 i[b-xqt6poga54] {
    margin-left: 8px;
}

.tech-grid[b-xqt6poga54] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

.tech-card[b-xqt6poga54] {
    background: var(--card, #fff);
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.tech-card:hover[b-xqt6poga54] {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow, rgba(0, 0, 0, 0.1));
}

.tech-icon[b-xqt6poga54] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    margin-bottom: 4px;
}

.tech-card strong[b-xqt6poga54] {
    font-size: 0.95rem;
    color: var(--text, #1e293b);
}

.tech-card span[b-xqt6poga54] {
    font-size: 0.82rem;
    color: var(--text-secondary, #64748b);
    line-height: 1.4;
}

/* ── Kurdish Note ── */
.roadmap-note[b-xqt6poga54] {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.roadmap-note-icon[b-xqt6poga54] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.roadmap-note h3[b-xqt6poga54] {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--text, #1e293b);
}

.roadmap-note p[b-xqt6poga54] {
    font-size: 0.92rem;
    color: var(--text-secondary, #64748b);
    line-height: 1.7;
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .roadmap-hero[b-xqt6poga54] {
        padding: 32px 20px;
    }

    .roadmap-hero h1[b-xqt6poga54] {
        font-size: 1.5rem;
    }

    .roadmap-stats-row[b-xqt6poga54] {
        gap: 16px;
    }

    .roadmap-stat-num[b-xqt6poga54] {
        font-size: 1.5rem;
    }

    .roadmap-phase[b-xqt6poga54] {
        gap: 12px;
    }

    .roadmap-phase-marker[b-xqt6poga54] {
        width: 36px;
    }

    .phase-dot[b-xqt6poga54] {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .roadmap-phase-content[b-xqt6poga54] {
        padding: 16px;
    }

    .tech-grid[b-xqt6poga54] {
        grid-template-columns: 1fr;
    }

    .roadmap-note[b-xqt6poga54] {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
/* _content/JIrlee.Panel.UI/Shared/Components/JirleePageHeader.razor.rz.scp.css */
/* Reusable Fluent UI page header + breadcrumb */
.jrl-page-header[b-3rovqtl913] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--neutral-stroke-divider-rest, rgba(255,255,255,0.08));
}

.jrl-fluent-breadcrumb[b-3rovqtl913] {
    font-size: 13px;
    opacity: 0.85;
}

.jrl-page-title-row[b-3rovqtl913] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.jrl-page-title[b-3rovqtl913] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.jrl-page-title h1[b-3rovqtl913] {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
}

.jrl-page-actions[b-3rovqtl913] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.jrl-page-description[b-3rovqtl913] {
    margin: 0;
    font-size: 14px;
    color: var(--neutral-foreground-hint-rest, rgba(255,255,255,0.6));
}
/* _content/JIrlee.Panel.UI/Shared/MainLayout.razor.rz.scp.css */
/* ==============================================
   MAIN LAYOUT — Professional Fluent UI Redesign
   ============================================== */

/* ── Skip navigation link (accessibility) ── */
.jrl-skip-link[b-cz88ww7m9w] {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    background: var(--accent-fill-rest, #6366f1);
    color: #fff;
    padding: 10px 18px;
    border-radius: 4px;
    z-index: 10000;
    text-decoration: none;
    font-weight: 600;
}

.jrl-skip-link:focus[b-cz88ww7m9w] {
    position: fixed;
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    outline: 2px solid var(--accent-stroke-rest, #818cf8);
    outline-offset: 2px;
}

/* ── FluentLayout root ── */
[b-cz88ww7m9w] .jrl-fluent-layout {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ── Header ── */
[b-cz88ww7m9w] .jrl-fluent-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
    background: var(--neutral-layer-1, #1f2230);
    border-bottom: 1px solid var(--neutral-stroke-divider-rest, rgba(255,255,255,0.08));
    height: 56px;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.jrl-brand[b-cz88ww7m9w] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.3px;
    white-space: nowrap;
}

.jrl-brand-text[b-cz88ww7m9w] {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

[b-cz88ww7m9w] .jrl-brand-badge {
    font-size: 10px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hamburger only visible on mobile */
[b-cz88ww7m9w] .jrl-hamburger {
    display: none;
}

@media (max-width: 1024px) {
    [b-cz88ww7m9w] .jrl-hamburger {
        display: inline-flex;
    }
}

/* ── Header search ── */
.jrl-header-search[b-cz88ww7m9w] {
    position: relative;
    flex: 0 1 420px;
    min-width: 200px;
}

[b-cz88ww7m9w] .jrl-header-search .jrl-search {
    width: 100%;
}

.jrl-search-dropdown[b-cz88ww7m9w] {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: var(--neutral-layer-2, #252935);
    border: 1px solid var(--neutral-stroke-divider-rest, rgba(255,255,255,0.12));
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1001;
    padding: 6px;
}

.jrl-search-item[b-cz88ww7m9w] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 6px;
    text-decoration: none;
    color: var(--neutral-foreground-rest, #e5e7eb);
    font-size: 14px;
    transition: background 0.15s ease;
}

.jrl-search-item:hover[b-cz88ww7m9w],
.jrl-search-item:focus[b-cz88ww7m9w] {
    background: var(--neutral-fill-secondary-hover, rgba(99,102,241,0.15));
    outline: none;
}

/* ── Score badge ── */
[b-cz88ww7m9w] .jrl-score {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px !important;
    font-weight: 600;
}

/* ── Main layout stack ── */
[b-cz88ww7m9w] .jrl-stack-main {
    flex: 1;
    min-height: 0;
    width: 100%;
    align-items: stretch;
}

/* ── Sidebar ── */
.jrl-sidebar[b-cz88ww7m9w] {
    flex-shrink: 0;
    width: 280px;
    background: var(--neutral-layer-1, #1a1d29);
    border-right: 1px solid var(--neutral-stroke-divider-rest, rgba(255,255,255,0.08));
    overflow-y: auto;
    overflow-x: hidden;
    padding: 12px 8px;
    transition: transform 0.3s ease;
    position: relative;
}

.jrl-sidebar[b-cz88ww7m9w]::-webkit-scrollbar {
    width: 6px;
}

.jrl-sidebar[b-cz88ww7m9w]::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.08);
    border-radius: 3px;
}

.jrl-sidebar[b-cz88ww7m9w]::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.18);
}

[b-cz88ww7m9w] .jrl-sidebar .jrl-nav-menu,
[b-cz88ww7m9w] .jrl-sidebar .fluent-nav-menu {
    --fluent-nav-menu-background: transparent;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    background: transparent;
}

[b-cz88ww7m9w] .jrl-sidebar .fluent-nav-menu.collapsed {
    width: 100% !important;
    min-width: 100% !important;
}

[b-cz88ww7m9w] .jrl-sidebar .fluent-nav-item {
    border-radius: 6px;
    margin: 2px 4px;
    transition: background 0.15s ease;
}

[b-cz88ww7m9w] .jrl-sidebar .fluent-nav-item:hover {
    background: rgba(99,102,241,0.08);
}

[b-cz88ww7m9w] .jrl-sidebar .fluent-nav-link {
    padding: 8px 12px;
    font-size: 14px;
}

[b-cz88ww7m9w] .jrl-sidebar span.active .fluent-nav-link {
    background: rgba(99,102,241,0.15);
    color: var(--accent-fill-rest, #818cf8);
    font-weight: 600;
    border-radius: 6px;
}

[b-cz88ww7m9w] .jrl-sidebar .fluent-nav-group > .fluent-nav-link {
    font-weight: 600;
}

/* ── Sidebar sections (Top Languages, Needs Attention) ── */
.jrl-sidebar-section[b-cz88ww7m9w] {
    padding: 8px 12px;
    margin-bottom: 4px;
}

.jrl-sidebar-section-title[b-cz88ww7m9w] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--neutral-foreground-hint-rest, rgba(255,255,255,0.55));
    margin-bottom: 6px;
}

.jrl-lang-item[b-cz88ww7m9w] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 6px;
    text-decoration: none;
    color: var(--neutral-foreground-rest, #e5e7eb);
    font-size: 13px;
    transition: all 0.15s ease;
    margin-bottom: 2px;
}

.jrl-lang-item:hover[b-cz88ww7m9w] {
    background: var(--neutral-fill-secondary-hover, rgba(99,102,241,0.12));
    transform: translateX(2px);
}

.jrl-lang-name[b-cz88ww7m9w] {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ── Mobile sidebar ── */
@media (max-width: 1024px) {
    .jrl-sidebar[b-cz88ww7m9w] {
        position: fixed;
        top: 56px;
        left: 0;
        bottom: 0;
        z-index: 999;
        transform: translateX(-100%);
        box-shadow: 4px 0 20px rgba(0,0,0,0.4);
    }

    .jrl-sidebar.open[b-cz88ww7m9w] {
        transform: translateX(0);
    }

    .jrl-sidebar-backdrop[b-cz88ww7m9w] {
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: 998;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }
}

@media (min-width: 1025px) {
    .jrl-sidebar-backdrop[b-cz88ww7m9w] {
        display: none;
    }
}

/* ── Body content ── */
[b-cz88ww7m9w] .jrl-body-content {
    flex: 1;
    min-width: 0;
    overflow: auto;
    background: var(--neutral-layer-2, #13151f);
}

.jrl-content[b-cz88ww7m9w] {
    padding: 20px 24px;
    max-width: 100%;
    min-height: calc(100vh - 56px - 48px);
}

@media (max-width: 768px) {
    .jrl-content[b-cz88ww7m9w] {
        padding: 16px;
    }
}

/* ── Footer ── */
[b-cz88ww7m9w] .jrl-fluent-footer {
    padding: 12px 20px;
    background: var(--neutral-layer-1, #1f2230);
    border-top: 1px solid var(--neutral-stroke-divider-rest, rgba(255,255,255,0.08));
    font-size: 13px;
    color: var(--neutral-foreground-hint-rest, rgba(255,255,255,0.65));
    min-height: 48px;
}

.jrl-footer-status[b-cz88ww7m9w] {
    font-size: 12px;
    opacity: 0.85;
}

/* ── Accent picker ── */
.jrl-accent-picker[b-cz88ww7m9w] {
    position: relative;
}

.jrl-accent-dropdown[b-cz88ww7m9w] {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--neutral-layer-2, #252935);
    border: 1px solid var(--neutral-stroke-divider-rest, rgba(255,255,255,0.12));
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(4, 28px);
    gap: 8px;
    z-index: 1001;
}

.jrl-accent-swatch[b-cz88ww7m9w] {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: var(--swatch-color);
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    padding: 0;
}

.jrl-accent-swatch:hover[b-cz88ww7m9w] {
    transform: scale(1.15);
    box-shadow: 0 0 0 3px rgba(99,102,241,0.25);
}

.jrl-accent-swatch.active[b-cz88ww7m9w] {
    border-color: #fff;
    box-shadow: 0 0 0 2px var(--swatch-color);
}

/* ── Scroll to top button ── */
[b-cz88ww7m9w] .jrl-scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    z-index: 900;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

[b-cz88ww7m9w] .jrl-scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
}

[b-cz88ww7m9w] .jrl-scroll-top:hover {
    transform: translateY(-3px);
}

/* ── Responsive refinements ── */
@media (max-width: 768px) {
    .jrl-brand-text[b-cz88ww7m9w] {
        display: none;
    }

    .jrl-header-search[b-cz88ww7m9w] {
        flex: 1;
    }

    [b-cz88ww7m9w] .jrl-brand-badge {
        display: none;
    }
}

@media (max-width: 480px) {
    [b-cz88ww7m9w] .jrl-fluent-header {
        padding: 0 12px;
        gap: 6px;
    }

    .jrl-header-search[b-cz88ww7m9w] {
        min-width: 140px;
    }
}
/* ==============================================
   MAIN LAYOUT — Fluent UI Redesign
   ============================================== */

/* ── Skip navigation link (accessibility) ── */
.jrl-skip-link[b-cz88ww7m9w] {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    background: var(--accent-fill-rest, #6366f1);
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    z-index: 10000;
    text-decoration: none;
    font-weight: 600;
}

.jrl-skip-link:focus[b-cz88ww7m9w] {
    position: fixed;
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
}

/* ── App Layout ── */
.jrl-app-layout[b-cz88ww7m9w] {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

/* ── Sidebar ── */
.jrl-sidebar[b-cz88ww7m9w] {
    width: 280px;
    min-width: 280px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--neutral-layer-2, #1e1e1e);
    border-right: 1px solid var(--neutral-stroke-divider-rest, #333);
    overflow: hidden;
    transition: transform 250ms ease, opacity 250ms ease;
    z-index: 200;
}

.jrl-sidebar-inner[b-cz88ww7m9w] {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.jrl-sidebar-header[b-cz88ww7m9w] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 16px 8px;
    flex-shrink: 0;
}

.jrl-brand[b-cz88ww7m9w] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.jrl-brand-text[b-cz88ww7m9w] {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.jrl-sidebar-close[b-cz88ww7m9w] {
    display: none;
}

.jrl-sidebar-footer[b-cz88ww7m9w] {
    margin-top: auto;
    flex-shrink: 0;
    padding-bottom: 8px;
}

/* ── Sidebar Language Sections ── */
.jrl-sidebar-section[b-cz88ww7m9w] {
    padding: 4px 16px;
}

.jrl-sidebar-section-title[b-cz88ww7m9w] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
    padding: 6px 0;
}

.jrl-lang-item[b-cz88ww7m9w] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 8px;
    border-radius: 6px;
    font-size: 13px;
    text-decoration: none;
    color: inherit;
    transition: background 150ms ease;
}

.jrl-lang-item:hover[b-cz88ww7m9w] {
    background: var(--neutral-fill-stealth-hover, rgba(255,255,255,0.06));
}

.jrl-lang-item span[b-cz88ww7m9w] {
    flex: 1;
}

.jrl-lang-weak[b-cz88ww7m9w] {
    opacity: 0.85;
}

/* ── Main Content ── */
.jrl-main[b-cz88ww7m9w] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-width: 0;
}

/* ── Header ── */
.jrl-header[b-cz88ww7m9w] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    background: var(--neutral-layer-1, #1a1a1a);
    border-bottom: 1px solid var(--neutral-stroke-divider-rest, #333);
    position: sticky;
    top: 0;
    z-index: 100;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.jrl-hamburger[b-cz88ww7m9w] {
    display: none;
}

.jrl-search[b-cz88ww7m9w] {
    flex: 0 1 340px;
    min-width: 180px;
}

.jrl-header-actions[b-cz88ww7m9w] {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.jrl-score[b-cz88ww7m9w] {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    font-weight: 600;
}

/* ── Search Dropdown ── */
.jrl-search-dropdown[b-cz88ww7m9w] {
    position: absolute;
    top: 52px;
    left: 20px;
    width: 340px;
    max-height: 360px;
    overflow-y: auto;
    background: var(--neutral-layer-floating, #2a2a2a);
    border: 1px solid var(--neutral-stroke-rest, #444);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    z-index: 500;
}

.jrl-search-item[b-cz88ww7m9w] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 13px;
    color: inherit;
    text-decoration: none;
    transition: background 150ms ease;
}

.jrl-search-item:hover[b-cz88ww7m9w] {
    background: var(--neutral-fill-stealth-hover, rgba(255,255,255,0.06));
}

.jrl-search-item i[b-cz88ww7m9w] {
    width: 18px;
    text-align: center;
    opacity: 0.6;
}

/* ── Accent Picker ── */
.jrl-accent-picker[b-cz88ww7m9w] {
    position: relative;
}

.jrl-accent-dropdown[b-cz88ww7m9w] {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--neutral-layer-floating, #2a2a2a);
    border: 1px solid var(--neutral-stroke-rest, #444);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    z-index: 500;
}

.jrl-accent-swatch[b-cz88ww7m9w] {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: var(--swatch-color);
    cursor: pointer;
    transition: transform 200ms cubic-bezier(0.34, 1.56, 0.64, 1), border-color 200ms ease, box-shadow 200ms ease;
}

.jrl-accent-swatch:hover[b-cz88ww7m9w] {
    transform: scale(1.2);
}

.jrl-accent-swatch.active[b-cz88ww7m9w] {
    border-color: #fff;
    box-shadow: 0 0 0 2px var(--swatch-color), 0 0 12px var(--swatch-color);
    transform: scale(1.15);
}

/* ── Page Content ── */
.jrl-content[b-cz88ww7m9w] {
    padding: 24px;
    flex: 1;
}

/* ── Scroll to Top ── */
.jrl-scroll-top[b-cz88ww7m9w] {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 50;
    border-radius: 50% !important;
    width: 40px;
    height: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    display: none;
}

/* ── Overlay ── */
.jrl-sidebar-overlay[b-cz88ww7m9w] {
    position: fixed !important;
    z-index: 199 !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .jrl-sidebar[b-cz88ww7m9w] {
        position: fixed;
        left: 0;
        top: 0;
        transform: translateX(-100%);
        box-shadow: none;
    }

    .jrl-sidebar.open[b-cz88ww7m9w] {
        transform: translateX(0);
        box-shadow: 4px 0 24px rgba(0,0,0,0.5);
    }

    .jrl-sidebar-close[b-cz88ww7m9w] {
        display: flex;
    }

    .jrl-hamburger[b-cz88ww7m9w] {
        display: flex;
    }
}

@media (max-width: 768px) {
    .jrl-header[b-cz88ww7m9w] {
        padding: 8px 12px;
        gap: 8px;
    }

    .jrl-search[b-cz88ww7m9w] {
        flex: 1 1 100%;
        order: 10;
        min-width: 0;
    }

    .jrl-content[b-cz88ww7m9w] {
        padding: 16px;
    }

    .jrl-search-dropdown[b-cz88ww7m9w] {
        left: 12px;
        right: 12px;
        width: auto;
    }
}

@media (max-width: 480px) {
    .jrl-content[b-cz88ww7m9w] {
        padding: 12px;
    }

    .jrl-score[b-cz88ww7m9w] {
        display: none;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .jrl-sidebar[b-cz88ww7m9w],
    .jrl-accent-swatch[b-cz88ww7m9w] {
        transition: none !important;
    }
}
