/*

Guidelines:

	* dark mode first (as nothing means blackhold)

 */

*,
*::before,
*::after {
	box-sizing: content-box;
}

html {
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	scroll-behavior: smooth;
	overscroll-behavior: auto;
}

body {
	margin: 0;
	padding: 8px;
}

input[type="button"],
button {
	border: none;
	outline: none;
	background: none;
	cursor: pointer;
}

dl,
dt,
dd {
	margin: 0;
	padding: 0;
}

:any-link {
	color: unset;
	text-decoration: none;
}

textarea,
input,
button,
body {
	color: #ffffff;
	background: #000000;
}

::-webkit-scrollbar {
	background-color: #121212;
}

::-webkit-scrollbar-corner,
::-webkit-scrollbar-thumb {
	background-color: gray;
}

@media (prefers-color-scheme: light) {

	textarea,
	input,
	button,
	body {
		color: #000000;
		background: #ffffff;
	}

	::-webkit-scrollbar {
		background-color: #eeeeee;
	}
}

/* BEGIN: qia-app */

qia-top-bar {
	margin-top: -8px;
	margin-left: -8px;
	margin-right: -8px;
	width: calc(100% + 16px);
}

qia-top-bar {
	border-image-slice: 1;
	border-image-source: linear-gradient(90deg, #ea4335, #ea4335 25%, #fbbc04, #34a853, #4285f4 75%);
	border-left: 0;
	border-right: 0;
	border-top: 0;
	border-bottom-style: solid;
	border-bottom-width: 1px
}

qia-top-bar .qia-app-inputs {
	height: 48px;
	line-height: 1.5em;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1em;
	line-height: 1.5em;
	font-family: Arial, Helvetica, sans-serif
}

qia-top-bar input[type="text"] {
	font-size: 16px;
}

.qia-app-page {
	margin: 0 auto;
	width: 720px;
	max-width: 100%;
}

/* END: qia-app */
