<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#headerContainer {
  background-color: var(--color-brand-1);
}

#mainContainer {
  background-color: var(--color-grey-2);
}

h1 {
  font-weight: 600;
}

nav {
  max-width: 90%;
  height: 50px;
  display: flex;
  justify-content: space-between;
  line-height: 45px;
}

#recentSearches {
  height: 50px;
  align-self: center;
  display: flex;
  justify-content: center;
  align-items: center;

}

.user {
  width: 45px;
  height: 45px;
  margin: 0 6px;
  border-radius: 50%;
  list-style: none;
  position: relative;
}

.access {
  width: 125px;
  height: 25px;
  background-color: var(--color-grey-7);
  color: var(--color-grey-2);
  font-weight: 500;
  font-size: 12px;
  text-align: center;
  line-height: 25px;
  position: absolute;
  left: -90%;
  top: 80%;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  z-index: 1;
  display: none;
  cursor: pointer;
  animation: spawn 0.1s;
}
</pre></body></html>