/*
 * Copyright (c) 2023 Unikue Ltd. All rights reserved.
 *
 * Licensed under the MIT License (the "License")
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 */


/* body light scrollbar */

body::-webkit-scrollbar {
    height: 8px;
    width: 8px;
}
body::-webkit-scrollbar-track {
    border-radius: 4px;
    background-color: #f5f5f5;
}
body::-webkit-scrollbar-track:hover,
body::-webkit-scrollbar-track:active {
    background-color: #f5f5f5;
}
body::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #bfbfbf;
}
body::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:active {
    background-color: #8c8c8c;
}


/* body dark scrollbar */

[data-prefers-color='dark'] body::-webkit-scrollbar-track {
    background-color: #8c8c8c;
}
[data-prefers-color='dark'] body::-webkit-scrollbar-track:hover,
[data-prefers-color='dark'] body::-webkit-scrollbar-track:active {
    background-color: #8c8c8c;
}
[data-prefers-color='dark'] body::-webkit-scrollbar-thumb {
    background-color: #595959;
}
[data-prefers-color='dark'] body::-webkit-scrollbar-thumb:hover,
[data-prefers-color='dark'] body::-webkit-scrollbar-thumb:active {
    background-color: #595959;
}


/* logo font */

#root > div > header > div > div > h1 > a > span {
    font-family: Comfortaa, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, cursive;
}
