* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }

body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #0e1117;
  color: #e6edf3;
}

/* Logo opcjonalne */
.logo{
  position: absolute;
  top: 14px;
  left: 14px;
  width: 130px;
  height: auto;
  opacity: 0.9;
}

/* Pasek wyszukiwania: wyśrodkowany poziomo, 10px od góry */
.searchbar{
  position: absolute;
  top: 10px;                 /* <- 10px od góry */
  left: 50%;
  transform: translateX(-50%); /* <- środek poziomo */
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px;
}

.searchbar__input{
  /* dopasowane pod EAG2402311095 (13 znaków) + komfort */
  width: 22ch;                 /* szerokość w "znakach" */
  max-width: 78vw;
  height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: #e6edf3;
  outline: none;

  text-align: center;          /* unikat wyśrodkowany w inpucie */
  letter-spacing: 0.02em;
  font-weight: 600;
}


.searchbar__input::placeholder{
  color: rgba(230,237,243,.55);
}

.searchbar__btn{
  height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(120,140,255,.20);
  color: #e6edf3;
  cursor: pointer;
}

.searchbar__btn:hover{
  background: rgba(120,140,255,.30);
}

.result{
  max-width: 900px;
  margin: 120px auto 0;
  padding: 0 16px;
}
