:root {
    --primary: #1a1f36;
    --accent: #c9a84c;
    --accent-dark: #a07a2a;
    --bg: #f0f2f5;
    --white: #ffffff;
    --text: #2d3748;
    --muted: #718096;
    --border: #e2e8f0;
    --danger: #e53e3e;
    --success: #38a169;
    --sidebar-w: 240px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 14px;
}

a { text-decoration: none; color: inherit; }

/* ===== INSTALL / LOGIN ===== */
.auth-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0f1e 0%, #1a1f36 60%, #2d1f0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-card {
    background: var(--white);
    border-radius: 16px;
    padding: 48px 40px;
    width: 100%;
    max-width: 460px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.auth-card .brand {
    text-align: center;
    margin-bottom: 32px;
}

.auth-card .brand .logo-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    color: white;
}

.auth-card .brand h1 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}

.auth-card .brand p {
    color: var(--muted);
    font-size: 13px;
    margin-top: 4px;
}

.form-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 6px;
    display: block;
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: border-color .2s;
    outline: none;
    background: #fafafa;
}

.form-control:focus { border-color: var(--accent); background: white; }

.form-group { margin-bottom: 18px; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    border: none;
    transition: all .2s;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    width: 100%;
    justify-content: center;
}

.btn-primary:hover { opacity: .9; transform: translateY(-1px); }

.btn-secondary {
    background: var(--bg);
    color: var(--text);
    border: 1.5px solid var(--border);
}

.btn-danger { background: var(--danger); color: white; }
.btn-sm { padding: 6px 14px; font-size: 12px; }

.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 18px;
    font-size: 13px;
}

.alert-danger { background: #fff5f5; border: 1px solid #fed7d7; color: #c53030; }
.alert-success { background: #f0fff4; border: 1px solid #c6f6d5; color: #276749; }
.alert-info { background: #ebf8ff; border: 1px solid #bee3f8; color: #2b6cb0; }

.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    color: var(--muted);
    font-size: 12px;
}

.divider::before, .divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* ===== INSTALL STEPS ===== */
.install-steps {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
    justify-content: center;
}

.install-step {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--muted);
}

.install-step .num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--border);
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

.install-step.active .num { background: var(--accent); color: white; }
.install-step.active { color: var(--accent); font-weight: 600; }
.install-step.done .num { background: var(--success); color: white; }

.section-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text);
}

.form-check input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--accent); }

/* ===== ADMIN LAYOUT ===== */
.admin-wrap { display: flex; min-height: 100vh; }

.sidebar {
    width: var(--sidebar-w);
    background: var(--primary);
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
    transition: transform .3s;
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: #fff;
    border-radius: 0 0 12px 12px;
    margin-bottom: 4px;
}

.sidebar-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}

.sidebar-brand .icon {
    width: 36px;
    height: 36px;
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.sidebar-brand .name {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.sidebar-brand .version {
    font-size: 10px;
    color: rgba(255,255,255,.4);
}

.sidebar-nav { padding: 16px 0; flex: 1; }

.nav-section {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .1em;
    color: rgba(255,255,255,.35);
    padding: 16px 20px 6px;
    text-transform: uppercase;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: rgba(255,255,255,.7);
    font-size: 13px;
    transition: all .15s;
    border-left: 3px solid transparent;
}

.nav-item:hover { color: white; background: rgba(255,255,255,.06); }
.nav-item.active { color: var(--accent); background: rgba(201,168,76,.1); border-left-color: var(--accent); }
.nav-item i { width: 18px; text-align: center; font-size: 14px; }

.sidebar-footer {
    padding: 16px 20px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.user-avatar {
    width: 34px;
    height: 34px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.user-name { font-size: 12px; font-weight: 600; color: white; }
.user-role { font-size: 10px; color: rgba(255,255,255,.4); }

.btn-logout {
    width: 100%;
    padding: 8px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 6px;
    color: rgba(255,255,255,.6);
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all .15s;
    font-family: 'Poppins', sans-serif;
}

.btn-logout:hover { background: rgba(229,62,62,.15); border-color: rgba(229,62,62,.3); color: #fc8181; }

/* ===== ADMIN CONTENT ===== */
.admin-content {
    margin-left: var(--sidebar-w);
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.admin-header {
    background: white;
    padding: 16px 28px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 50;
}

.page-title { font-size: 18px; font-weight: 700; color: var(--primary); }
.breadcrumb { font-size: 12px; color: var(--muted); margin-top: 2px; }

.admin-body { padding: 28px; flex: 1; }

/* ===== CARDS ===== */
.card {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.card-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-title { font-size: 15px; font-weight: 600; color: var(--primary); }
.card-body { padding: 20px; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.stat-icon.gold { background: rgba(201,168,76,.15); color: var(--accent-dark); }
.stat-icon.blue { background: rgba(49,130,206,.15); color: #3182ce; }
.stat-icon.green { background: rgba(56,161,105,.15); color: var(--success); }
.stat-icon.red { background: rgba(229,62,62,.15); color: var(--danger); }

.stat-val { font-size: 26px; font-weight: 700; color: var(--primary); line-height: 1; }
.stat-label { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ===== PAGE EDITOR ===== */
.editor-wrap {
    display: grid;
    grid-template-columns: 220px 1fr 280px;
    gap: 16px;
    height: calc(100vh - 140px);
}

.editor-panel {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.panel-header {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .05em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.panel-body { padding: 12px; flex: 1; overflow-y: auto; }

.block-lib-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1.5px dashed var(--border);
    border-radius: 8px;
    cursor: grab;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text);
    background: #fafafa;
    transition: all .15s;
    user-select: none;
}

.block-lib-item:hover {
    border-color: var(--accent);
    background: rgba(201,168,76,.05);
    color: var(--accent-dark);
}

.block-lib-item i { font-size: 16px; color: var(--accent); width: 20px; text-align: center; }

/* Editor canvas */
.editor-canvas { overflow-y: auto; padding: 12px; }

.canvas-block {
    background: white;
    border: 2px solid var(--border);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all .15s;
    position: relative;
}

.canvas-block:hover { border-color: var(--accent); box-shadow: 0 2px 12px rgba(201,168,76,.2); }
.canvas-block.selected { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(201,168,76,.2); }

.block-toolbar {
    background: var(--primary);
    padding: 6px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    font-size: 11px;
}

.block-toolbar .type { display: flex; align-items: center; gap: 6px; opacity: .7; }
.block-toolbar .actions { display: flex; gap: 4px; }

.block-action-btn {
    background: rgba(255,255,255,.1);
    border: none;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: background .15s;
}

.block-action-btn:hover { background: rgba(255,255,255,.2); }
.block-action-btn.del:hover { background: rgba(229,62,62,.5); }

.block-preview { padding: 14px 16px; font-size: 12px; color: var(--muted); min-height: 50px; }
.block-preview h3 { font-size: 14px; color: var(--primary); margin-bottom: 4px; }
.block-preview .badge { display: inline-block; padding: 2px 8px; border-radius: 20px; background: var(--bg); font-size: 10px; }

.drag-placeholder {
    border: 2px dashed var(--accent);
    background: rgba(201,168,76,.05);
    border-radius: 10px;
    height: 60px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 12px;
    gap: 6px;
}

/* Properties panel */
.prop-group { margin-bottom: 20px; }
.prop-label { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; }
.prop-row { margin-bottom: 10px; }
.prop-row label { font-size: 12px; color: var(--text); margin-bottom: 4px; display: block; }
.prop-row input, .prop-row textarea, .prop-row select {
    width: 100%;
    padding: 7px 10px;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border-color .15s;
}
.prop-row input:focus, .prop-row textarea:focus { border-color: var(--accent); }
.prop-row textarea { resize: vertical; min-height: 70px; }

.no-selection {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    color: var(--muted);
    text-align: center;
    font-size: 12px;
    gap: 12px;
}

.no-selection i { font-size: 32px; opacity: .3; }

.btn-save-editor {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity .2s;
}

.btn-save-editor:hover { opacity: .9; }
.btn-save-editor.saving { opacity: .7; pointer-events: none; }

/* ===== PUBLIC SITE ===== */
.site-nav {
    background: #ffffff;
    box-shadow: 0 2px 16px rgba(0,0,0,.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 0 60px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0 40px;
    height: 70px;
    border-bottom: 1px solid #f0f2f5;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text, #2d3748);
}
.site-logo .ico { color: var(--accent); font-size: 24px; }
.site-logo .txt { font-size: 15px; font-weight: 700; color: var(--text, #2d3748); }
.site-logo .sub { font-size: 10px; color: #a0aec0; display: block; line-height: 1; }

.site-nav-links {
    display: flex;
    gap: 36px;
    justify-content: center;
}
.site-nav-links a {
    color: #718096;
    font-size: 13px;
    font-weight: 500;
    transition: color .15s;
    position: relative;
    padding-bottom: 4px;
}
.site-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--accent, #c9a84c);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform .2s;
}
.site-nav-links a:hover { color: var(--accent, #c9a84c); }
.site-nav-links a:hover::after { transform: scaleX(1); }

.site-nav-cta {
    background: var(--accent);
    color: #fff;
    padding: 9px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    transition: opacity .15s;
}
.site-nav-cta:hover { opacity: .9; color: #fff; }

.site-block { position: relative; }

/* Hero */
.block-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 40px 60px;
    position: relative;
    overflow: hidden;
}

.block-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,15,30,.92) 0%, rgba(26,31,54,.85) 100%);
    z-index: 1;
}

.block-hero .content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.block-hero h1 {
    font-size: 52px;
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 20px;
}

.block-hero h1 span { color: var(--accent); }

.block-hero p {
    font-size: 18px;
    color: rgba(255,255,255,.75);
    margin-bottom: 36px;
    line-height: 1.6;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #0a0f1e;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    transition: all .2s;
}

.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.4); color: #0a0f1e; }

/* About */
.block-sobre {
    padding: 90px 40px;
    background: white;
}

.block-sobre .inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.block-sobre .sobre-img {
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 48px;
}

.block-sobre .sobre-img img { width: 100%; height: 100%; object-fit: cover; }

.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-heading {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-text { font-size: 15px; color: var(--muted); line-height: 1.8; }

/* Services */
.block-servicos {
    padding: 90px 40px;
    background: var(--bg);
}

.block-servicos .inner { max-width: 1000px; margin: 0 auto; }
.block-servicos .header-section { text-align: center; margin-bottom: 48px; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.service-card {
    background: white;
    border-radius: 14px;
    padding: 28px 24px;
    border: 1px solid var(--border);
    transition: all .2s;
}

.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.08); border-color: var(--accent); }

.service-icon {
    width: 52px;
    height: 52px;
    background: rgba(201,168,76,.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--accent-dark);
    margin-bottom: 16px;
}

.service-card h3 { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.service-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* Contact */
.block-contato {
    padding: 90px 40px;
    background: white;
}

.block-contato .inner { max-width: 700px; margin: 0 auto; text-align: center; }
.block-contato .header-section { margin-bottom: 40px; }

.contact-form { text-align: left; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-form .form-group { margin-bottom: 16px; }
.contact-form .form-control { background: var(--bg); border-color: var(--border); }
.contact-form .form-control:focus { background: white; }

.contact-form textarea.form-control { min-height: 120px; resize: vertical; }

.btn-contact {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #0a0f1e;
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
    transition: opacity .2s;
}

.btn-contact:hover { opacity: .9; }

/* Site footer */
.site-footer {
    background: var(--primary);
    color: rgba(255,255,255,.6);
    text-align: center;
    padding: 28px 40px;
    font-size: 12px;
}

.site-footer strong { color: var(--accent); }

/* Admin bar on public page */
.admin-bar {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.admin-bar a {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--accent);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0,0,0,.3);
    transition: all .2s;
}

.admin-bar a:hover { background: var(--accent); color: var(--primary); transform: translateY(-2px); }

/* ===== HAMBURGER ===== */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: var(--primary);
    padding: 4px 8px;
    border-radius: 6px;
    transition: background .15s;
    flex-shrink: 0;
}
.hamburger:hover { background: var(--bg); }

/* ===== OVERLAY MOBILE ===== */
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 99;
    backdrop-filter: blur(2px);
}
.sidebar-overlay.active { display: block; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    /* Sidebar */
    .sidebar {
        transform: translateX(-100%);
        z-index: 200;
    }
    .sidebar.open { transform: translateX(0); }
    .hamburger { display: flex; align-items: center; justify-content: center; }

    /* Content */
    .admin-content { margin-left: 0; }
    .admin-header { padding: 12px 16px; flex-wrap: wrap; gap: 10px; }
    .admin-body { padding: 16px; }

    /* Stats */
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .stat-card { padding: 14px; gap: 10px; }
    .stat-val { font-size: 20px; }
    .stat-icon { width: 40px; height: 40px; font-size: 16px; }

    /* Editor */
    .editor-wrap { grid-template-columns: 1fr; height: auto; }

    /* Cards/tables */
    .card { border-radius: 8px; }
    table { font-size: 12px; }
    table th, table td { padding: 10px 10px; }

    /* Forms */
    .form-row { grid-template-columns: 1fr; }

    /* Grids */
    .services-grid { grid-template-columns: 1fr; }

    /* Public page */
    .site-nav { padding: 0 20px; gap: 0 16px; }
    .site-nav-links { display: none; }
    .site-nav-cta { padding: 8px 14px; font-size: 12px; }
    .block-hero { padding: 90px 20px 50px; }
    .block-hero h1 { font-size: 28px; }
    .block-hero p { font-size: 15px; }
    .block-sobre { padding: 60px 20px; }
    .block-sobre .inner { grid-template-columns: 1fr; gap: 32px; }
    .block-servicos { padding: 60px 20px; }
    .block-contato { padding: 60px 20px; }
    .section-heading { font-size: 26px; }
    .site-footer { padding: 20px 16px; }
    .admin-bar a { font-size: 12px; padding: 8px 14px; }
}

@media (max-width: 420px) {
    .stats-grid { grid-template-columns: 1fr; }
    .auth-card { padding: 28px 20px; }
    .block-hero h1 { font-size: 24px; }
}

/* Sortable ghost */
.sortable-ghost { opacity: .3; }
.sortable-chosen { cursor: grabbing !important; }

/* Misc */
.mt-4 { margin-top: 24px; }
.mb-4 { margin-bottom: 24px; }
.text-muted { color: var(--muted); font-size: 13px; }
.text-center { text-align: center; }
.d-flex { display: flex; }
.gap-2 { gap: 8px; }
.flex-1 { flex: 1; }
.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; }
.badge-success { background: #f0fff4; color: var(--success); }
.badge-warning { background: #fffbeb; color: #d97706; }
.badge-danger { background: #fff5f5; color: var(--danger); }
.badge-muted { background: var(--bg); color: var(--muted); }
