header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  padding: 0.5em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 1.5cm;
  transition: background-color 0.3s, backdrop-filter 0.3s;
  z-index: 1000;
  left: 0;
}

header.scrolled {
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.menu-icon,
.search-icon,
.notify-icon {
  width: 30px;
  height: 30px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  margin: 0 1em;
}

.search-icon {
  display: block;
}

.notify-icon {
  display: flex;
}

.title {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-grow: 1;
  text-align: center;
}

.logo {
  display: flex;
  height: 1.2cm;
  width: auto;
  max-width: 100%;
}

.icons-section {
  display: flex;
  align-items: center;
  gap: 10px; /* Adjust spacing as needed */
}

.live-tv-icon img {
  width: auto;
  height: 1.2cm;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

.live-tv-icon img:hover {
  transform: scale(1.1);
}

@media only screen and (max-width: 767px) {
  header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: nowrap;
      height: 3em;
      width: 100%;
  }
  .menu-icon,
  .search-icon,
  .notify-icon {
      width: 30px;
      height: 30px;
      cursor: pointer;
      align-items: center;
      justify-content: center;
  }
  .title {
      flex-grow: 1;
      display: flex;
      align-items: center;
  }
}
