<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Add here all your CSS customizations */
.main {
    min-height: calc(100vh - 90px);
}

.scrollbar-style-1::-webkit-scrollbar-track
{
    opacity: 0;
}

.scrollbar-style-1::-webkit-scrollbar
{
    width: 10px;
    height: 10px;
    opacity: 0;
}

.scrollbar-style-1::-webkit-scrollbar-thumb
{
    border-radius: 8px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #555;
}

.scrollbar-style-1::-webkit-scrollbar-corner {
    opacity: 0;
}

.scrollbar-style-2::-webkit-scrollbar-track
{
    opacity: 0;
}

.scrollbar-style-2::-webkit-scrollbar
{
    width: 10px;
    height: 10px;
    opacity: 0;
}

.scrollbar-style-2::-webkit-scrollbar-thumb
{
    border-radius: 8px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #cfcfcf;
}

.sidebar-sticky-scroll
{
    height: calc(100vh - 90px); overflow-y:auto;
}
</pre></body></html>