/*
   bus_cms1 - Beta Universe Systems LLC app
   Copyright (c) 2026 Beta Universe Systems LLC / John Molt
   An unlimited license is granted to the Reno Police Department
   and the City of Reno in perpetuity.

   2026-05-12 8:36 PM PT

   wwwroot/styles/app.css

   BUS CMS shell layout primitives.
*/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: var(--black);
    color: var(--white);
    display: flex;
    flex-direction: column;
    font-family: var(--font-body);
    font-size: 14px;
    min-height: 100dvh;
}

main {
    flex: 1;
    padding: 12px;
    width: 100%;
}

#bus-outlet,
#bus-content {
    width: 100%;
}
