/* Inline styles for position and visibility might be applied dynamically with JavaScript */
.search-dropdown {
	z-index: 999990;
	position: absolute;
	background: #fff;
	padding: 5px;
	border: 3px solid #fff;
	/* width: 300px; */
	display: none;
    border-radius: 5px;
}

.search-dropdown ul,
.search-dropdown p {
	padding: 5px !important;
}

.search-dropdown > ul {
	padding: 0;
	margin: 0;
	list-style-type: none !important; /* Ensures no bullets are shown */
}

.search-dropdown_list {
    margin-top: 2px;
    margin-bottom: 2px;
}

/* Ensure all ULs within the context of search-dropdown follow these rules */
.search-dropdown ul {
	list-style: none; /* Discard default list styling */
}

.search-dropdown_pinnedtitle {
	padding-top: 10px;
	margin: 3px 0;
	font-weight: 700; /* Bold the title for better visibility */
}

.dodobird_woos_img {
	width: 50px !important;
	height: 50px !important;

	object-fit: cover;
	position: absolute;
}

.dodobird_woos_titlediv {
	padding-left: 5px;
	margin-left: 55px;
	font-size: 18px;
}


.dodo-loader {
  margin: auto;
  width: 30px;
  aspect-ratio: 4;
  --_g: no-repeat radial-gradient(circle closest-side,#000 90%,#0000);
  background: 
    var(--_g) 0%   50%,
    var(--_g) 50%  50%,
    var(--_g) 100% 50%;
  background-size: calc(100%/3) 100%;
  animation: l7 1s infinite linear;
}
@keyframes l7 {
    33%{background-size:calc(100%/3) 0%  ,calc(100%/3) 100%,calc(100%/3) 100%}
    50%{background-size:calc(100%/3) 100%,calc(100%/3) 0%  ,calc(100%/3) 100%}
    66%{background-size:calc(100%/3) 100%,calc(100%/3) 100%,calc(100%/3) 0%  }
}