body {
	background-color: #121212;
	color: white;
	font-family: Arial, sans-serif;
	text-align: center;
	--scrollbar-color-thumb: #343541;
    --scrollbar-color-track: #40414f;
    --scrollbar-width: thin;
    --scrollbar-width-legacy: 4px;
    --scrollbar-height-legacy: 4px;
}
#container {
	margin: 100px auto;
	width: 300px;
	background: #1e1e1e;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.1);
}
input {
	width: 94%;
	padding: 10px;
	margin: 5px 0;
	border: none;
	border-radius: 5px;
	background: #2a2a2a;
	color: white;
}
button {
	background: #007AFF;
	color: white;
	border: none;
	padding: 10px;
	margin: 5px 0;
	width: 100%;
	border-radius: 5px;
	cursor: pointer;
}
button:hover {
	background: #005ECF;
}
h2{
	margin-bottom: -50px;
}
img{
	margin-top: 20px;
}
@supports (scrollbar-width: auto) {
    body {
        scrollbar-color: var(--scrollbar-color-thumb) var(--scrollbar-color-track);
        scrollbar-width: thin !important; /* Apenas vertical, já que horizontal não é suportado */
    }
}
@supports selector(::-webkit-scrollbar) {
    body::-webkit-scrollbar {
        width: 4px !important;  /* Barra vertical */
        height: 4px !important; /* Barra horizontal */
        background: var(--scrollbar-color-track);
    }
    body::-webkit-scrollbar-thumb {
        background: var(--scrollbar-color-thumb);
        border-radius: 2px;
    }
    body::-webkit-scrollbar-track {
        background: var(--scrollbar-color-track);
    }
}