:root {
    --primary: #0b9b64;
    --primary-light: #daf0e8;
    --primary-hover: #097c50;
    --border: #e1e5ec;
    --text-primary: #1c2333;
    --text-secondary: #5b6472;
    --text-muted: #8a91a0;
    --surface: #ffffff;
    --surface-1: #f4f6fb;
    --danger: #b3261e;
    --danger-bg: #fbeaea;
    --success: #1a6b3c;
    --success-bg: #e6f4ea;
    --warning: #8a5a08;
    --warning-bg: #fbf1de;
    --info: #0f5fa8;
    --info-bg: #e6f1fb;
    --radius: 10px;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: var(--surface-1);
    color: var(--text-primary);
    font-size: 14px;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 220px;
    background: var(--primary);
    padding: 0 14px 22px;
    display: flex;
    flex-direction: column;
    z-index: 20;
    overflow-y: auto;
}
.sidebar-brand {
    display: flex;
    flex-direction: column;
    padding: 18px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    margin-bottom: 14px;
    flex-shrink: 0;
}
.sidebar-brand-row { display: flex; align-items: center; gap: 10px; }
.sidebar-icon { width: 38px; height: 38px; flex-shrink: 0; }
.sidebar-brand-main { color: #fff; font-weight: 700; font-size: 19px; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.sidebar-nav { display: flex; flex-direction: column; gap: 2px; }
.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 500;
}
.sidebar-nav a:hover { background: rgba(255, 255, 255, 0.1); text-decoration: none; color: #fff; }
.sidebar-nav a.active { background: rgba(255, 255, 255, 0.18); color: #fff; font-weight: 700; }
.sidebar-nav a svg { width: 18px; height: 18px; flex-shrink: 0; stroke-width: 2; }
.sidebar-divider { height: 1px; background: rgba(255,255,255,0.18); margin: 6px 12px; }

.main-wrapper { margin-left: 220px; min-height: 100vh; }

.topbar {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 0 24px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 10;
}

.topbar-title { font-size: 16px; font-weight: 700; color: var(--text-primary); }

.topbar-right { display: flex; align-items: center; gap: 16px; }

.topbar .user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-secondary);
    white-space: nowrap;
}
.user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}
.user-avatar-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .sidebar { position: static; width: auto; flex-direction: row; overflow-x: auto; padding: 10px; }
    .sidebar-nav { flex-direction: row; }
    .main-wrapper { margin-left: 0; }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.page-header h1 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s;
}
.btn:hover { background: var(--surface-1); text-decoration: none; }
.btn-primary { background: var(--primary); border-color: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-hover); }
.btn-danger { color: var(--danger); border-color: var(--danger-bg); }
.btn-danger:hover { background: var(--danger-bg); }
.btn-sm { padding: 5px 11px; font-size: 12px; }

.dashboard-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
    align-items: start;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}
.stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
}
.stat-card .label { font-size: 12px; color: var(--text-secondary); margin-bottom: 6px; }
.stat-card .value { font-size: 24px; font-weight: 700; color: var(--text-primary); }
.stat-card .sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.stat-card.accent .value { color: var(--primary); }

.module-list { display: flex; flex-direction: column; gap: 10px; }
.module-row {
    display: block;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 18px;
    text-decoration: none;
    color: inherit;
}
.module-row:hover { border-color: var(--primary); text-decoration: none; }
.module-row-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.module-row-title { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: var(--text-primary); }
.module-row-title i { width: 18px; height: 18px; color: var(--primary); }
.module-row-chevron { width: 16px; height: 16px; color: var(--text-muted); }
.module-row-stats { display: flex; gap: 24px; flex-wrap: wrap; }
.module-stat-value { font-size: 20px; font-weight: 700; color: var(--text-primary); }
.module-stat-label { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.module-stat-selesai { margin-left: auto; text-align: right; }
.module-stat-selesai .module-stat-value { color: var(--success); }
@media (max-width: 640px) {
    .module-row-stats { gap: 14px; }
    .module-stat-selesai { margin-left: 0; text-align: left; width: 100%; padding-top: 8px; border-top: 1px solid var(--border); }
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
}

/* Kanban board */
.kanban {
    display: grid;
    grid-template-columns: repeat(5, minmax(160px, 1fr));
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
}
.kanban-col {
    background: var(--surface-1);
    border-radius: var(--radius);
    padding: 10px;
    min-height: 120px;
}
.kanban-col-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.kanban-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--primary);
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 8px;
    font-size: 12px;
    cursor: grab;
}
.kanban-card:active { cursor: grabbing; }
.kanban-card .kc-title { font-weight: 700; margin-bottom: 2px; }
.kanban-card .kc-meta { color: var(--text-muted); }

.kanban-col[data-status="selesai"] .kanban-card { border-left-color: var(--success); }
.kanban-col[data-status="cetak"] .kanban-card { border-left-color: var(--warning); }
.kanban-col[data-status="finishing"] .kanban-card { border-left-color: var(--info); }
.kanban-col.drag-over { background: var(--primary-light); }

/* Kanban vertikal: tiap status jadi 1 lane besar, ditumpuk ke bawah, rata tengah */
.kanban-vertical {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 880px;
    margin: 0 auto;
}
.kanban-lane {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 26px;
}
.kanban-lane-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
}
.kanban-lane-header .count {
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 20px;
    padding: 2px 12px;
    font-size: 13px;
}
.kanban-lane-body {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.kanban-lane[data-status="selesai"] .kanban-lane-header .count { background: var(--success-bg); color: var(--success); }
.kanban-lane[data-status="cetak"] .kanban-lane-header .count { background: var(--warning-bg); color: var(--warning); }
.kanban-lane[data-status="finishing"] .kanban-lane-header .count { background: var(--info-bg); color: var(--info); }

.kanban-lane .kanban-card { width: 220px; margin-bottom: 0; }
.kanban-lane.drag-over { background: var(--primary-light); }
.kanban-lane-empty { color: var(--text-muted); font-size: 12px; padding: 10px 0; }
.sidebar-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px;
    position: sticky;
    top: 72px;
}
.sidebar-panel h2 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.reminder-item {
    border-left: 3px solid var(--warning);
    background: var(--warning-bg);
    border-radius: 6px;
    padding: 10px 12px;
    margin-bottom: 10px;
    font-size: 12px;
}
.reminder-item .r-title { font-weight: 700; margin-bottom: 2px; color: var(--text-primary); }
.reminder-item .r-meta { color: var(--text-secondary); }
.reminder-empty { color: var(--text-muted); font-size: 13px; text-align: center; padding: 20px 0; }

/* Order card list (pengganti tabel) */
.order-card-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.order-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 18px;
    transition: box-shadow 0.15s;
}
.order-card:hover { box-shadow: 0 2px 10px rgba(11, 155, 100, 0.08); }

.order-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.order-card-top-dates { display: flex; flex-direction: row; gap: 20px; align-items: center; }
.mini-field { font-size: 12px; color: var(--text-muted); white-space: nowrap; }
.mini-value { font-size: 13px; font-weight: 500; color: var(--text-secondary); }
.mini-field-kirim { font-size: 11px; }
.mini-field-kirim .mini-value { font-size: 12px; }
.order-card-code {
    font-weight: 700;
    font-size: 14px;
    color: var(--primary);
}
.order-card-badges { display: flex; gap: 6px; flex-wrap: wrap; }

.order-card-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 120px 80px 90px 190px;
    gap: 14px;
    margin-bottom: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}
.order-card-field { min-width: 0; }
.order-card-field .f-value { overflow-wrap: anywhere; }
.order-card-field .f-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 2px; }
.order-card-field .f-value { font-size: 15px; color: var(--text-primary); font-weight: 600; }
.order-card-field .f-value.muted { color: var(--text-secondary); font-weight: 400; }
.order-card-field-judul .f-value { text-transform: uppercase; }

.order-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 10px;
}
.order-card-actions { display: flex; align-items: center; gap: 8px; }

.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}
.user-menu { position: relative; }
.user-menu-trigger {
    background: none;
    border: none;
    font-family: inherit;
    cursor: pointer;
    border-radius: 8px;
    padding: 6px 8px;
}
.user-menu-trigger:hover { background: var(--surface-1); }
.user-menu-trigger .lucide-chevron-down { transition: transform .15s; color: var(--text-muted); }
.user-menu.open .user-menu-trigger .lucide-chevron-down { transform: rotate(180deg); }
.user-menu-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 200px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    padding: 6px;
    z-index: 50;
}
.user-menu.open .user-menu-dropdown { display: block; }
.user-menu-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-primary);
}
.user-menu-dropdown a:hover { background: var(--surface-1); text-decoration: none; }
.user-menu-dropdown a svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--text-secondary); }
.user-menu-divider { height: 1px; background: var(--border); margin: 6px 4px; }

.badge-baru { background: var(--surface-1); color: var(--text-secondary); }

.page-big-title { font-size: 28px; font-weight: 700; margin: 0; color: var(--text-primary); }
.page-header-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.badge-desain { background: var(--primary-light); color: var(--primary); }
.badge-cetak { background: var(--warning-bg); color: var(--warning); }
.badge-finishing { background: var(--info-bg); color: var(--info); }
.badge-qc { background: var(--warning-bg); color: var(--warning); }
.badge-selesai { background: var(--success-bg); color: var(--success); }
.badge-terlambat { background: var(--danger-bg); color: var(--danger); }
.badge-lewat { background: var(--danger-bg); color: var(--danger); }

.status-select {
    border: none;
    cursor: pointer;
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
    padding-right: 22px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='3'><path d='M6 9l6 6 6-6'/></svg>");
    background-repeat: no-repeat;
    background-position: right 8px center;
}
.status-select:hover { filter: brightness(0.96); }
.status-select:focus { outline: 2px solid var(--primary-light); }

.form-section-title { font-size: 13px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 14px; }
.form-section-divider { border-top: 1px solid var(--border); margin: 20px 0; }

.customer-suggestions {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 4px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    max-height: 220px;
    overflow-y: auto;
    z-index: 30;
}
.customer-suggestion-item { padding: 8px 12px; cursor: pointer; }
.customer-suggestion-item:hover { background: var(--surface-1); }
.customer-suggestion-item:not(:last-child) { border-bottom: 1px solid var(--border); }
.cs-nama { font-size: 13px; font-weight: 600; color: var(--text-primary); }
.cs-sub { font-size: 12px; color: var(--text-muted); margin-top: 1px; }

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-secondary); }
.form-group input, .form-group select, .form-group textarea {
    padding: 8px 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: inherit;
    background: var(--surface);
    color: var(--text-primary);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}
.phone-input-group { display: flex; }
.phone-input-group .phone-prefix {
    display: flex; align-items: center; padding: 0 10px;
    background: var(--surface-1); border: 1px solid var(--border); border-right: none;
    border-radius: var(--radius) 0 0 var(--radius);
    font-size: 14px; color: var(--text-secondary);
}
.phone-input-group input { border-radius: 0 var(--radius) var(--radius) 0 !important; flex: 1; min-width: 0; }

.form-actions { display: flex; gap: 10px; margin-top: 20px; }

.checkbox-group { display: flex; flex-wrap: wrap; gap: 12px; }
.checkbox-group label { display: flex; align-items: center; gap: 6px; font-weight: 400; font-size: 13px; color: var(--text-primary); }

.filters-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.filters { display: flex; gap: 10px; flex-wrap: wrap; }
.filters input, .filters select { padding: 7px 10px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 13px; }

.alert { padding: 10px 14px; border-radius: var(--radius); font-size: 13px; margin-bottom: 16px; }
.alert-success { background: var(--success-bg); color: var(--success); }
.alert-error { background: var(--danger-bg); color: var(--danger); }

.modal-overlay {
    position: fixed; inset: 0; background: rgba(15, 23, 42, 0.45);
    display: flex; align-items: center; justify-content: center;
    z-index: 1000; padding: 16px;
}
.modal-card {
    background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
    padding: 28px; width: 100%; max-width: 420px; text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.modal-card h2 { font-size: 18px; margin: 0 0 16px; color: var(--danger); }

.modal-card-form {
    background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
    padding: 24px; width: 100%; max-width: 520px; text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-height: 90vh; overflow-y: auto;
}
.modal-card-form h2 { font-size: 17px; margin: 0 0 4px; color: var(--text-primary); }

.modal-close-btn {
    background: none; border: none; cursor: pointer; font-size: 22px; line-height: 1;
    color: var(--text-muted); padding: 4px; flex-shrink: 0;
}
.modal-close-btn:hover { color: var(--text-primary); }
.modal-section-title { font-weight: 700; font-size: 14px; margin: 0 0 2px; }
.modal-section-sub { font-size: 12px; color: var(--text-muted); margin: 0 0 14px; }
.modal-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }

.access-row { display: flex; align-items: center; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--border); }
.access-row:last-child { border-bottom: none; }
.access-icon {
    width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; color: #fff;
}
.access-icon svg { width: 16px; height: 16px; }
.access-name { flex: 1; font-weight: 600; font-size: 13.5px; }
.access-row select { width: 110px; flex-shrink: 0; }

.toggle-switch { position: relative; display: inline-block; width: 38px; height: 21px; flex-shrink: 0; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
    position: absolute; cursor: pointer; inset: 0; background-color: #ccc;
    transition: .15s; border-radius: 21px;
}
.toggle-slider:before {
    position: absolute; content: ""; height: 15px; width: 15px; left: 3px; bottom: 3px;
    background-color: #fff; transition: .15s; border-radius: 50%;
}
.toggle-switch input:checked + .toggle-slider { background-color: var(--primary); }
.toggle-switch input:checked + .toggle-slider:before { transform: translateX(17px); }

.access-pill {
    display: inline-block; padding: 4px 10px; border-radius: 20px;
    font-size: 12px; font-weight: 700; white-space: nowrap;
}
.access-pill-none { background: var(--surface-1); color: var(--text-muted); font-weight: 500; }

.login-wrap {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 22vh;
    background: linear-gradient(160deg, var(--primary-light), var(--surface-1));
}
.login-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 10px 30px rgba(11, 155, 100, 0.1);
}
.login-card h1 { font-size: 18px; margin: 0 0 20px; text-align: center; color: var(--primary); }
.login-logo { display: block; max-width: 220px; width: 100%; height: auto; margin: 0 auto 24px; }

.password-wrap { position: relative; }
.password-wrap input { width: 100%; padding-right: 42px; }
.password-wrap button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: var(--text-muted);
    display: flex;
}
.password-wrap button:hover { color: var(--text-secondary); }
.password-wrap button.is-visible { color: var(--primary); }

.order-type-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}
.order-type-tab {
    padding: 9px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-secondary);
    background: var(--surface-1);
    border: 1px solid var(--border);
}
.order-type-tab:hover { text-decoration: none; color: var(--primary); }
.order-type-tab.active { background: var(--primary); color: #fff; border-color: var(--primary); }

.status-tabs {
    display: flex;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
    flex-wrap: wrap;
    overflow-x: auto;
}
.status-tab {
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}
.status-tab:hover { color: var(--primary); text-decoration: none; }
.status-tab.active { color: var(--primary); border-bottom-color: var(--primary); }
.status-tab-count {
    display: inline-block;
    background: var(--surface-1);
    color: var(--text-muted);
    border-radius: 20px;
    padding: 1px 8px;
    font-size: 11px;
    margin-left: 4px;
}
.status-tab.active .status-tab-count { background: var(--primary-light); color: var(--primary); }

.empty-state { text-align: center; padding: 40px 20px; color: var(--text-muted); }

/* Tabel generik (dipakai di halaman Data Pelanggan & Kelola Akun) */
table { width: 100%; border-collapse: collapse; font-size: 13px; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); vertical-align: middle; }
th { color: var(--text-secondary); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.02em; }
tr:hover td { background: var(--surface-1); }

.account-avatar-img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; display: block; }
.account-avatar-initial {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
}


@media (max-width: 900px) {
    .order-card-body { grid-template-columns: minmax(0, 1fr) 90px 90px; }
    .form-grid { grid-template-columns: 1fr; }
    .kanban { grid-template-columns: repeat(3, minmax(150px, 1fr)); }
    .dashboard-layout { grid-template-columns: 1fr; }
    .sidebar-panel { position: static; }
}
