.header {
  display: flex;
  align-items: center;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 0rem 1rem;
  height: var(--height-header);
}

.header__content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__title {
  font-family: "MubiFinder Expanded", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
  color: #2842e8;
}

.header__right {
  margin-left: 1rem;
}

.header__search .search__results {
  width: var(--width-search-small);
  right: 0;
  left: auto;
}

@media (prefers-color-scheme: dark) {
  .header {
    background-color: #212529;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
}
