/* ============================================
   DRi Vision - Layout
   ============================================ */

.app {
  display: flex;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

.app__sidebar {
  width: var(--sidebar-width);
  min-width: var(--sidebar-width);
  height: 100%;
  background: var(--bg-sidebar);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.app__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
}

.app__header {
  height: var(--header-height);
  min-height: var(--header-height);
  background: var(--bg-header);
  border-bottom: 1px solid var(--border);
}

.app__content {
  flex: 1;
  overflow-y: auto;
  background: var(--bg-primary);
}
