#root {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body {
    background-color: #222222;
}

body::-webkit-scrollbar,
div::-webkit-scrollbar {
    width: 5px;
    height: 0px;
    padding-left: 2px;
    padding-right: 2px;
}

::-webkit-scrollbar-track {
    background: #ff000000;
}

::-webkit-scrollbar-thumb {
    background: rgba(235, 235, 235, 0.33);;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}
