html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: auto;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, Adwaita Sans, Cantarell, Ubuntu, roboto, noto, helvetica, arial, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
}

main {
    flex: 1;
    overflow: auto;
}

.sidebar {
    background-color: #f8f9fa;
    border-right: 1px solid #dee2e6;
    display: flex;
    flex-direction: column;
}

.sidebar-content {
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

*::-webkit-scrollbar {
    width: 13px;
}

*::-webkit-scrollbar-thumb {
    height: 5rem;
    border-radius: 4px;
    border: 2px solid rgba(0,0,0,0);
    background-clip: content-box;
    background-color: #9aa1ad;
}

*::-webkit-scrollbar-thumb:hover {
    background-color: #7c818a;
}

@media (max-width: 991.98px) {
    .page {
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }

    .sidebar {
        max-height: none;
        width: 300px;
        border-right: 1px solid #dee2e6 !important;
    }
}
