body {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    max-width: unset;

    display: flex;

    .demo-sidebar-header {
        display: flex;
        gap: 1rem;
        align-items: center;
        padding: 0.5rem;
        border-radius: var(--radius);
    }
    .demo-sidenav-content {
        flex-grow: 1;
        padding: 1rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        
        .top-info {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            
            h1 {
                margin-bottom: 0;
            }
        }
    }
    .demo-sidenav-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 2rem;
        margin-top: 0.5rem;
    }

    .demo-sidebar-open {
        width: auto;
    }
    .demo-sidebar-close {
        width: 0%;
        padding: 0;
        border: none;
    }

    altar-element {
        flex: 1;
        min-height: 0;
    }
}