/* Flexbox styles for header layout */
.header {
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.982);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
}


.left-section {
  display: flex;
  justify-content: space-around;
  margin-bottom: 10px;
}

.middle-section {
  display: flex;
  flex: 1;
  max-width: 600px;
  margin-right: 40px;
  margin-left: 70px;
  margin-top: 5px;
}

.right-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex: 0.15;
  margin-top: 5px;
  margin-right: 15px;
}

/* Icons */
.icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
}


#hamburger-menu-icon {
  margin-top: 15px;
  margin-left: 24px;
  margin-right: 20px;
}

.youtube-logo {
  margin-top: 10px;
  height: 30px;
  width: 120px;
  object-fit: cover;
}

.profile-picture {
  width: 40px;
  border-radius: 40px;
}

/* Button styles */
.search-button {
  width: 64px;
  border: 1px solid rgb(181, 181, 181);
  border-left: none;
  margin-right: 15px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  padding-top: 5px;
  cursor: pointer;
}

.search-button:hover {
  transition-property: background-color;
  transition: 1ms;
  background-color: rgb(230, 230, 230);
}

.voice-search-button {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  border: none;
  padding-top: 5px;
  cursor: pointer;
}

.voice-search-button:hover {
  transition-property: background-color;
  transition: 1ms;
  background-color: rgb(218, 218, 218);
}

.voice-search-button:active {
  background-color: rgb(200, 200, 200);
}

/* Search bar styles */
.search-bar {
  flex: 1;
  min-width: 0;
  border: 1px solid rgb(181, 181, 181);
  padding-left: 10px;
  font-size: 16px;
  box-shadow: inset 0 1px 2px #eee;
  border-radius: 40px 0 0 40px;
}

.search-bar:focus {
  outline: none;
  border: 1px solid rgb(2, 108, 223);
  box-shadow: inset 0 1px 2px #c7c7c7;
}

/* Add responsiveness */
@media (max-width: 765px) {
  .search-bar {
    display: none;
  }
  .search-button {
    width: 100%;
    height: 40px;
    border-radius: 20px;
    border: none;
    padding-top: 5px;
    cursor: pointer;
  }
  .search-button:hover {
    transition-property: background-color;
    transition: 1ms;
    background-color: rgb(218, 218, 218);
  }

  .voice-search-button {
    display: none;
  }
  .middle-section {
    margin-left: 30px;
    margin-right: 10px;
  }
}

@media (max-width: 765px) {
  #upload-icon,
  #youtube-apps-icon {
    display: none;
  }
}



