html, body {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
}

@media (prefers-color-scheme: dark) {
  body {
    background: black;
  }
}

.root {
  display: flex;
  flex-direction: column;
  height: 100%;
}

@media print {
  * {
    height: auto !important;
    overflow: visible !important;
  }
}

/* --- Брендування «Телеметра»: логотип на сторінці входу --- */
div[class*="-sidebar"] > svg[class$="-image"] {
  display: none !important;
}
div[class*="-sidebar"]::before {
  content: "";
  display: block;
  width: min(70%, 320px);
  aspect-ratio: 1108 / 248;
  background-image: url("/brand-logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Слоган під логотипом на панелі входу */
div[class*="-sidebar"]::after {
  content: "Твоя телеметрія у кишені";
  display: block;
  margin-top: 20px;
  max-width: 280px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}
