/* Shared sidebar layout — included by all dashboard pages */
.navbar { display: none !important; }
*, *::before, *::after { box-sizing: border-box; }
body { background: #fafafb !important; color: #1c1917 !important; }
.dashboard { display: flex; min-height: 100vh; background: #fafafb; font-family: 'Public Sans', -apple-system, sans-serif; }

.sidebar { width: 220px; background: #fff; border-right: 1.5px solid #e6ebf1; display: flex; flex-direction: column; position: fixed; top: 0; left: 0; height: 100vh; z-index: 100; }
.sidebar-brand { display: flex; align-items: center; gap: 10px; padding: 18px 16px; border-bottom: 1.5px solid #e6ebf1; }
.sidebar-logo { width: 32px; height: 32px; background: #1890ff !important; border-radius: 4px !important; display: flex; align-items: center; justify-content: center; font-size: 13px !important; font-weight: 800 !important; color: #ffffff !important; flex-shrink: 0; }
.sidebar-brand-name { font-size: 14px; font-weight: 700; color: #1c1917; }

.sidebar-nav { flex: 1; padding: 8px 10px; display: flex; flex-direction: column; gap: 2px; overflow-y: auto; }
.nav-item { display: flex !important; align-items: center !important; justify-content: flex-start !important; gap: 9px !important; padding: 9px 11px !important; border-radius: 4px !important; font-size: 13.5px !important; font-weight: 500 !important; color: #78716c !important; cursor: pointer; transition: all 0.15s; border: none !important; background: none !important; text-align: left !important; width: 100% !important; text-decoration: none !important; font-family: inherit !important; appearance: none !important; -webkit-appearance: none !important; box-sizing: border-box !important; }
.nav-item svg { width: 16px !important; height: 16px !important; flex-shrink: 0; }
.nav-item:hover { background: #f5f6f7 !important; color: #1c1917 !important; }
.nav-item.active { background: #e6f4ff !important; color: #1890ff !important; font-weight: 600 !important; }

.sidebar-footer { padding: 12px 10px; border-top: 1.5px solid #e6ebf1; }
.btn-logout { display: flex; align-items: center; gap: 9px; width: 100%; padding: 9px 11px; border-radius: 4px; border: none; background: none; font-size: 13px; font-weight: 500; color: #dc2626; cursor: pointer; font-family: inherit; transition: background 0.15s; }
.btn-logout:hover { background: #fff4f4; }
.btn-logout svg { width: 15px; height: 15px; flex-shrink: 0; }

.main-content { margin-left: 220px; flex: 1; min-height: 100vh; display: flex; flex-direction: column; }
.view-header { background: #fff; border-bottom: 1.5px solid #e6ebf1; padding: 14px 24px; display: flex; align-items: center; gap: 12px; }
.view-header h1 { font-size: 16px; font-weight: 700; color: #1c1917; }
.view-body { padding: 16px 24px; flex: 1; }
