/* Slugify - text in, URL slug out, with a separator choice and a lowercase toggle.
   Reuses base .btn-outline / .seg; colors come from theme tokens only. */

.sl-options {
    display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-bottom: 18px;
}
.sl-opt { display: flex; align-items: center; gap: 10px; }
.sl-opt-label { font-size: 14px; color: var(--muted); font-weight: 600; }
.sl-check {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; color: var(--text); font-weight: 600; cursor: pointer;
}
.sl-check input { width: 16px; height: 16px; accent-color: var(--accent); }

.sl-pane { display: flex; flex-direction: column; gap: 6px; min-width: 0; margin-bottom: 16px; }
.sl-pane-head { display: flex; align-items: center; justify-content: space-between; min-height: 28px; }
.sl-pane-label { font-size: 14px; color: var(--muted); font-weight: 600; }

.sl-area {
    width: 100%; box-sizing: border-box; min-height: 120px; resize: vertical;
    font-family: ui-monospace, "SFMono-Regular", "Menlo", "Consolas", monospace;
    font-size: 15px; line-height: 1.5; padding: 12px;
    color: var(--text); background: var(--surface);
    border: 1px solid var(--border); border-radius: 12px;
}
.sl-out {
    width: 100%; box-sizing: border-box; padding: 12px;
    font-family: ui-monospace, "SFMono-Regular", "Menlo", "Consolas", monospace;
    font-size: 18px; font-weight: 600; color: var(--accent);
    background: var(--bg); border: 1px solid var(--border); border-radius: 12px;
}
.sl-area:focus, .sl-out:focus { outline: 2px solid var(--accent); border-color: var(--accent); }

.sl-actions { margin: 4px 0 0; }
