body {
    display: flex;
    flex-direction: column;
    align-items: stretch;

    background-color: var(--secondary-background);
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    margin: 0;
    overflow: hidden;
}
@media screen and (min-width: 1440px) {
body {
align-items: center;
}
}
.layout.content-wrapper {
    display: flex;
    flex-direction: column;

    height: 100vh;
    max-height: 100vh;
    padding: var(--spacing);

    box-sizing: border-box;
}
.page.content-wrapper {
    display: flex;
    flex-direction: row;

    width: 100%;
    flex: 1;
    min-height: 0;
}
.page.content {
    display: flex;
    flex-direction: column;

    width: 100%;
    flex: 1;
    gap: 12px;
    padding: var(--spacing);
    overflow-y: auto;
    min-height: 0;
    margin-bottom: var(--negative-spacing);
    margin-top: var(--negative-spacing);
    margin-right: -20px;
}

/* Custom scrollbar styling */
.page.content::-webkit-scrollbar {
    width: 8px;
}

.page.content::-webkit-scrollbar-track {
    background: transparent;
}

.page.content::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.page.content::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

/* Firefox scrollbar styling */
.page.content {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}
/*.container {
    width: 100%;
    min-width: 812px;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
}*/
@media screen and (min-width: 1920px) {
    .container {
        min-width: 1024px;
        max-width: 50%;
    }
}
@media screen and (min-width: 1440px) {
    .container {
        min-width: 1024px;
        max-width: 50%;
    }
}
/*@media screen and (max-width: 991px) {
    .container {
        min-width: 728px;
        max-width: 90%;
    }
}
@media screen and (max-width: 767px) {
    .container {
        min-width: auto;
        max-width: 100%;
    }
}
@media screen and (max-width: 478px) {
    .container {
        max-width: 100%
    }
}*/
.section {
    padding: 24px;

    background-color: var(--primary-background);
    border-radius: var(--l-border);
    box-shadow: var(--primary-shadow);
}