html, body {
	position: relative;
	width: 100%;
	height: 100%;
}

body {
	background-color: #181818;
	color: white;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

a {
	color: rgb(0,100,200);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}
::-webkit-scrollbar {
	width: 12px;
	overflow-y: hidden;
}
::-webkit-scrollbar-track {
	background-color: transparent;
}
::-webkit-scrollbar-thumb {
	background-color: #d6dee1;
	/* background-color: transparent; */
	border-radius: 20px;
	border: 4px solid transparent;
	background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover {
	background-color: #a8bbbf;
	border: 2px solid transparent;
	background-clip: content-box;
}

a:visited {
	color: rgb(0,80,160);
}

label {
	display: block;
}

input, button, select, textarea {
	font-family: inherit;
	font-size: inherit;
	-webkit-padding: 0.4em 0;
	padding: 0.4em;
	margin: 0 0 0.5em 0;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 2px;
}
input[type="button"], button {
	background-color: #24FF00;
	border-radius: 5px;
	border: none;
	font-weight: bold;
}
input[type="button"]:hover, button:hover {
	cursor: pointer;
}

input:disabled {
	color: #ccc;
}

button:disabled {
	color: #999;
}

button:not(:disabled):active {
	background-color: #ddd;
}

button:focus {
	border-color: #666;
}

.gyf-bar {
	background-color: #000000;
	color: #ffffff;
	border: none;
	border-radius: .5rem;
	font-size: 1.1rem;
	margin: 0;
}
