.navbar {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  padding: 1rem 3rem;
  color: var(--color-fg);
  background-color: var(--color-bg);
}

.navbar__item {
  cursor: pointer;
}
.navbar__list {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-grow: 1; 
}

.navbar__search-wrapper {
  margin-left: auto;
  margin-right: 20px;
}

.search-box {
  padding: 5px 15px;
  border-radius: 20px;
  border: 1px solid #555;
  background: #222;
  color: white;
  outline: none;
  width: 180px;
}

.search-box:focus {
  border-color: #e50914;
}

.profile-selection {
  display: flex;
  align-items: center;
  gap: 10px;
}

#profile-selector {
  padding: 5px;
  border-radius: 4px;
  background: #333;
  color: white;
  border: 1px solid #555;
}

.navbar__avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
}
