/* FortifyEM — App CSS (app.html + admin.html) */

body { margin: 0; overflow: hidden; }

.app-shell { height: 100vh; }

.app-content { height: calc(100vh - 48px); overflow-y: auto; }

/* scrollbar styling */
.app-content::-webkit-scrollbar { width: 6px; }
.app-content::-webkit-scrollbar-track { background: var(--off); }
.app-content::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.app-content::-webkit-scrollbar-thumb:hover { background: #d1d5db; }

.sidebar::-webkit-scrollbar { width: 4px; }
.sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }
