/* ── Toolbar ─────────────────────────────────────────────────────── */
.sc-toolbar {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 4px 8px;
    font-family: Arial, sans-serif;
}
.sc-toolbar-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    padding: 3px 0;
}
.sc-group {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}
.sc-label {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-right: 2px;
    white-space: nowrap;
}
.sc-sep {
    width: 1px;
    height: 22px;
    background: #cbd5e1;
    margin: 0 4px;
}
.sc-search {
    width: 160px !important;
}

/* Dark theme toolbar */
.theme-dark .sc-toolbar  { background: #1e1e1e; border-bottom-color: #333; }
.theme-dark .sc-label    { color: #94a3b8; }
.theme-dark .sc-sep      { background: #444; }
.theme-blue .sc-toolbar  { background: #0f172a; border-bottom-color: #1e3a5f; }
.theme-blue .sc-label    { color: #94a3b8; }
.theme-blue .sc-sep      { background: #334155; }
.theme-soft .sc-toolbar  { background: #f5f3ff; border-bottom-color: #ddd6fe; }
.theme-soft .sc-label    { color: #6d28d9; }
.theme-soft .sc-sep      { background: #c4b5fd; }

/* ── Plugin status ──────────────────────────────────────────────── */
#plugin-status {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 4px 10px;
    background: #1e293b;
    color: #fff;
    font-family: monospace;
    font-size: 13px;
    border-radius: 6px;
    margin: 4px 0 4px 8px;
    vertical-align: middle;
}

.badge-ok {
    background: #22c55e;
    color: #000;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
}

.badge-off {
    background: #16a34a;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
}

.badge-info {
    background: #f59e0b;
    color: #000;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
}

.task-drag-source {
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    height: 28px;
    background: #5762ca;
    color: #fff;
    font-family: monospace;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    cursor: grab;
    user-select: none;
    margin: 6px 8px;
    box-shadow: 0 2px 6px rgba(87,98,202,0.4);
    letter-spacing: 0.02em;
}
.theme-dark .task-drag-source  { background: #5762ca; box-shadow: 0 2px 6px rgba(87,98,202,0.4); }
.theme-blue .task-drag-source  { background: #3b82f6; box-shadow: 0 2px 6px rgba(59,130,246,0.4); }
.theme-soft .task-drag-source  { background: #818cf8; box-shadow: 0 2px 6px rgba(129,140,248,0.4); }
