.hidden {
    display: none !important;
}

.tymo-header-container {
    position: fixed;
    display: flex;
    align-items: center;
    right: 0;
    padding: 0;
    top: 0;
    width: 100%;
    height: 64px;
    background-color:  rgba(247, 34, 27, 0.5);
    border-bottom: 1px solid rgba(255, 69, 0, 0.5);
    z-index: 3;
}

.tymo-header-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 10px;
    gap: 10px;
    height: 100%;
}
.tymo-header-logos img {
    height: 44px;
    width: auto;
}

.tymo-header-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.tymo-header-options {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-right: 5px;
}

.tymo-header-searchbar-container {
  position: absolute;
  display: flex;
  flex-direction: column;
  right: 50px;
  top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* Aligns contents to the right */
  width: 240px;
  overflow: hidden;
}
.tymo-header-searchbar-wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 40px;

}
.searchbar-input{
  position: absolute;
  border: 0;
  outline: 0;
  background: white;
  width: 0;
  height: 40px;
  transition: width 0.4s ease, opacity 0.3s ease;
  opacity: 0;
  margin-left: auto;
  right: 40px;
  padding: 0px 5px 0px 15px;
  font-size: 20px;
  color: #10498E;
  border-bottom: 1px solid  white;
}
.searchbar-input::placeholder {
  color: #10498E;
}
.tymo-header-searchbar-container.active .searchbar-icon {
  background-color: white; /* Change to your desired color */
  color: #10498E; /* Change to your desired color */
  border-left: 0.5px solid  #0078D4;
  /*border-bottom: 0.5px solid  #0078D4;*/
  }
.tymo-header-searchbar-container.active .searchbar-input {
  width: 200px;
  opacity: 1;
  /*border-bottom: 0.5px solid  #0078D4;*/
  }
.searchbar-icon {
  margin-left: auto;
  position: relative;
  height: 40px;
  width: 40px;
  transition: width 0.4s ease, opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid transparent;
  cursor: pointer;
  color: white; 
  }

  /*SEARCH RESULTS*/
  .tymo-header-search-results-container-wrapper {
    position: relative;
    width: 0;
    margin-left: auto;
    max-height: calc(100vh - 100px);
    border: 1px solid rgba(247, 34, 27, 0.1);
    border-top: none;
    overflow-y: auto; 
  }
  .tymo-header-search-results-container-wrapper.active {
    width: 100%;
    transition: width 0.4s ease, opacity 0.3s ease;
  }
  .tymo-header-search-results-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow-y: auto; /* Allows scrolling if content exceeds height */
  }
  .tymo-header-search-result {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 5px;
    border-bottom: 1px solid #ccc;
    background-color: white;
    color: black;
    text-decoration: none; /* Remove underline */
    transition: background-color 0.3s ease;
    cursor: pointer; /* Change cursor to pointer */
  }
  .tymo-header-search-result:hover {
    background-color: #f4b9b9; /* Change background color on hover */
  }
  .tymo-header-search-result-cover-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    /*border: 1px solid green;*/
  }
  .tymo-header-search-result-cover {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
  }
  .tymo-header-search-result-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 140px;
    padding-left: 10px;
   /* border: 1px solid red;*/
  }
  .tymo-header-search-result-title {
    padding: 5px;
    margin: 0;
    font-size: 14px;
    color: #10498E;
  }
  /*.tymo-header-search-result-genres {
      padding: 10px;
      margin: 0;
      font-size: 14px;
      color: #555;
    }*/
    .tymo-header-search-result-duration {
      padding: 5px;
      margin: 0;
      font-size: 14px;
      color: #370505;
    }

.tymo-sign-in-button {
  display: block;
  color: white;
}


.tymo-menu-button {
display: none !important; /* Hidden by default */
color: white;
}
.tymo-menu {
  position: absolute;
  display: none; /* Hidden by default */
  flex-direction: column;
  top: 64px; /* Below the header */
  right: 0;
  gap: 10px;
  background-color: #333;
  padding: 1em;
  transition: max-height 0.3s ease-out;
  overflow: hidden;
}
.tymo-menu a {
  color: white;
  text-decoration: none;
}
/* Show menu when toggled */
.tymo-menu.show {
  display: flex !important;
}

/*Phones*/
@media (max-width: 767px) {
  .tymo-menu-button {
    display: block !important; /* Show on larger screens */
  }
  .tymo-sign-in-button {
    display: none !important; /* Hide on larger screens */
  }
}
