.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  border-bottom: 0px solid var(--google-border-color);
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px #00000014;
}

.header .menu-icon {
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
}

.header .menu-icon:hover {
  background-color: var(--google-hover-grey);
}

.header-left .menu-icon:hover {
  background-color: var(--google-hover-grey);
}

.header .logo {
  font-size: 22px;
  font-weight: 500;
  color: var(--google-grey-text);
}

.header .search-bar {
  flex-grow: 1;
  margin: 0 24px;
}

.header .search-bar input {
  width: 100%;
  max-width: 720px;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  background-color: var(--google-hover-grey);
}

.header .search-bar input:focus {
  background-color: #fff;
  box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
  border-color: rgba(223, 225, 229, 0);
  outline: none;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 8px; /* Adds a nice space between the menu icon and the logo */
}

/*
  This targets the new logo image directly to control its size.
*/
.header-logo img {
  height: 50px; /* Adjust this value to fit your header's height perfectly */
  width: auto; /* This ensures the image aspect ratio is maintained */
  /* vertical-align helps prevent any tiny alignment issues */
  vertical-align: middle;
}
