/* ==UserStyle==
@name           YouTube Dark Search Suggestions Box
@description    Makes YouTubes search suggestions box also dark when in dark mode
@namespace      gitlab.com/Neui/userstyles
@homepageURL    https://gitlab.com/Neui/userstyles
@supportURL     https://gitlab.com/Neui/userstyles/issues
@version        1.0.1
@license        CC-BY-4.0
@author         Neui
@downloadURL none
==/UserStyle== */

@-moz-document domain("youtube.com") {
	html[dark=true] .gsfs, /* Main thing */
	html[dark=true] .sbfl_b, /* Report autocompletion line */
	html[dark=true] .sbsb_a, /* Top/bottom border */
	html[dark=true] .sbdd_b /* Final border */ {
		background: hsla(0, 0%, 8%, .8) !important;
		border-color: black;
	}

	/* Make main text white to be readable */
	html[dark=true] .gsfs { color: white !important; }

	/* Seach entry hover */
	html[dark=true] .sbsb_d { background: hsla(0, 0%, 20%, .8) !important; }

	/* Remove this to get rid of the border */
	html[dark=true] .sbdd_b /* Final border */ {
		border-top: 1px solid;
		border-color: #3a3b42 /* #1c62b9 */ ;
	}
}
