.search-container {
  position: relative;
  display: flex;
  align-items: center;
}

#search-input {
  display: none;
  width: 200px;
  height: 30px;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#search-icon {
	position: relative;
  margin-right: 10px;
  top: -1px;
}

#search-arrow {
  display: none;
  margin-left: 10px;
}
.search-page .navbar {
  display: none;
}

.navbar-brand img {
    width: 40px;
    height: 40px;
/*	aspect-ratio: auto 40 / 40;*/
 /*   border-radius: 50%;*/
    object-fit: cover;
    display: block;
}
.navbar-brand-wrapper {
    padding: 3px;
    background: linear-gradient(45deg, #000000, #333333, #4CAF50);
    border-radius: 50%;
    display: inline-block;
}
#autocomplete-results-container {
  position: absolute;
  top: 100%;
  left: 10px;
  background-color: #030303e6;
  border: 1px solid #000;
  padding: 10px;
  width: 300px;
  max-height: 300px;
  overflow-y: auto;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
  z-index: 1000;
}
#autocomplete-results-container h4 {
	color: #fff;
	}
#autocomplete-results-container div {
  padding: 10px;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
}

#autocomplete-results-container div:hover {
  background-color: #f5f5f5;
}

#autocomplete-results-container div:last-child {
  border-bottom: none;
}

.notification-badge {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.6em;
  padding: 0.2em 0.4em;
}

.badge-danger {
  background-color: #dc3545;
  color: #fff;
  border-radius: 10px;
  padding: 0.25em 0.5em;
  font-size: 0.75em;
  font-weight: bold;
}

.search-container.expanded {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333;
  padding: 10px;
  display: flex;
  align-items: center;
  z-index: 1000; /* Add this line */
}


.expanded #search-input {
  display: block;
  position: absolute;
  top: 16px; /* Adjust this value to move the input up or down */
  left: 50px; /* Adjust this value to move the input left or right */
  width: calc(100% - 100px);
  height: 28px;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.expanded #search-icon {
  display: block;
  position: absolute;
      top: 20px;
    right: 10px;
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #fff;
}

.expanded #search-arrow {
  display: block;
  position: absolute;
  top: 15px; /* Adjust this value to move the arrow up or down */
  left: 9px; /* Adjust this value to move the arrow left or right */
  font-size: 18px;
  color: #fff;
}




.expanded #voice-search-btn i {
  font-size: 18px;
  color: #fff;
}

.search-container.expanded ~ .nav-item:not(.search-container) {
  display: none;
}


