.headerWrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 8px;
  background-color: #0088cc;
  color: white;
  height: 73px;
  font-size: 14px;
  font-family: "Roboto Condensed", sans-serif;
}

@media (max-width: 768px) {
  .headerWrapper {
    padding: 7px 15px;
    height: 78px;

  }
}

.logo {
  max-height: 65px;
  max-width: 250px;
  /* margin-top: 4px; */

}



@media (max-width: 450px) {
  .logo {
    left: -2rem;
  }
}



.wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: auto;
  margin-top: 0;
  flex: 1;
}

@media (max-width: 600px) {
  .wrapper {
    width: 50%;
    margin-top: 0;
  }
}

.headerContent {
  display: flex;
  align-items: center;
  justify-content: flex-end;

  width: 100%;
  padding-bottom: 0.2rem;
  position: relative;
  right: 0;
}

.searchBox {
  box-shadow: 0 0 5px #6f6f6f;
  border: none;
  outline: none;
  font-size: 17px;
  height: 2.3rem;
  color: black;
  background-color: white;
  transition: width 0.5s ease, opacity 0.3s ease;
  width: 0px;
  opacity: 0;
  margin-right: 0.5rem;
  padding: 1rem;
}

.searchBox.expanded {
  width: 270px;
  opacity: 1;
}

.boldText {
  font-weight: bold;
}

.section {
  display: flex;
  flex-direction: column;
  margin: 0 0.5rem;
  align-items: flex-end;
  font-size: 15px;
}

.userSection {
  display: flex;
  flex-direction: row;
  align-items: center;
  /* gap: 3px; */

  font-size: 14px;
  cursor: pointer;
}

.section>div {
  width: auto;
  display: flex;
  align-items: center;
}

.section1 {
  margin: 0 0.6rem 0 0.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 15px;
}

@media (max-width: 600px) {
  .section1 {
    display: none;
    margin: 0;
  }

  .section {
    padding: 0rem 0 0 8rem;
  }

  .section>div {
    width: 0rem;
    display: flex;
  }
}



.searchIcon {
  cursor: pointer;
  position: relative;
  height: 1.5rem;
  margin: 0 10px 0 0;
  display: flex;
  align-items: center;
}



@media (max-width: 768px) {
  .logo {

    position: relative;
    top: -1rem;
    margin-left: 0.7rem;



    margin-top: 1.2rem;
    /* margin-left: 1rem; */


  }

  .homeLogo {
    margin-top: 1rem;


  }
}


/* Search Modal Styles */
.searchModalOverlay {
  position: absolute;
  top: 100%;
  left: 0;
  width: 300px;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  border-radius: 4px;
  overflow: hidden;
}

.searchModalContent {
  max-height: 400px;
  overflow-y: auto;
}

.sportGroup {
  border-bottom: 1px solid #eee;
  padding: 0.5rem;
}

.sportHeader {
  background-color: #34495e;
  color: white;
  padding: 8px 12px;
  font-weight: bold;
  font-size: 14px;
}

.searchResultItem {
  padding: 8px 12px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
}

.searchResultItem:hover {
  background-color: #f9f9f9;
}

.eventName {
  font-weight: 700;
  color: #333;
  font-size: 16px;
}

.eventTime {
  font-size: 14px;
  color: #555;
  margin-top: 2px;
}

.noResults {
  padding: 15px;
  text-align: center;
  color: #666;
}