/* First-paint app shell — all-white on hard refresh (CTRL+F5) */
#eln-app-shell,
.eln-app-shell.eln-app-shell--overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  min-height: 100vh;
  width: 100%;
  background: #fff;
  transition: opacity 0.15s ease-out;
}

.eln-app-shell {
  display: flex;
  min-height: 100vh;
  width: 100%;
  background: #fff;
}

#eln-app-shell.eln-app-shell--hidden {
  opacity: 0;
  pointer-events: none;
}

.eln-app-shell__nav {
  width: 4.5rem;
  flex-shrink: 0;
  background: #fff;
  min-height: 100vh;
}

.eln-app-shell__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding-left: 0;
  background: #fff;
}

.eln-app-shell__header {
  height: 56px;
  background: #fff;
  border-bottom: none;
  box-shadow: none;
}

.eln-app-shell__content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.eln-app-shell__spinner {
  width: 36px;
  height: 36px;
  border: 3px solid #f0f0f0;
  border-top-color: #d0d0d0;
  border-radius: 50%;
  animation: eln-app-shell-spin 0.8s linear infinite;
}

@keyframes eln-app-shell-spin {
  to {
    transform: rotate(360deg);
  }
}

.eln-app-shell .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

#id_container_root {
  min-height: 100vh;
  width: 100%;
}
