/* OKVIDEO branding overlay for the datarhei Restreamer admin UI (login screen + app).
   Injected into /ui/ via nginx sub_filter. Image-independent, reversible. */

/* Replace the Restreamer logo (login card + sidebar) with the OKVIDEO PRO logo.
   `content` swaps the rendered image of the <img src="...rs-logo...svg">. */
img[src*="rs-logo"] {
	content: url("/ui-brand/okvideo-logo.svg") !important;
	width: auto !important;
	height: 50px !important;
	max-width: 230px !important;
	object-fit: contain !important;
}

/* Remove the datarhei developer attribution on the login footer
   (logo image + link to the company site). Help/docs links
   (docs.datarhei.com, service.datarhei.com) are left intact. */
img[src*="datarhei"] {
	display: none !important;
}
a[href="https://datarhei.com"],
a[href="https://datarhei.com/"] {
	display: none !important;
}

/* Tint primary buttons (incl. the login "Sign in" button) to OK blue. */
.MuiButton-containedPrimary {
	background-color: #00b0ff !important;
	color: #001018 !important;
}
.MuiButton-containedPrimary:hover {
	background-color: #33c0ff !important;
}

/* Focus/active accent on inputs to match the brand. */
.MuiInput-underline:after,
.MuiFilledInput-underline:after,
.MuiOutlinedInput-root.Mui-focused .MuiOutlinedInput-notchedOutline {
	border-color: #00b0ff !important;
}
.Mui-focused {
	color: #00b0ff !important;
}
