:root {
    --primary: #5567ff;
    --primary-content: #ffffff;
    --primary-dark: #1321ab;
    --primary-light: #8895ff;
    --secondary: #ffb455;
    --secondary-content: #552f00;
    --secondary-dark: #ff9d22;
    --secondary-light: #ffca88;
    --background: #f0f0f0;
    --foreground: #fbfbfb;
    --border: #dfdfdf;
    --copy: #262626;
    --copy-light: #666666;
    --copy-lighter: #8c8c8c;
    --success: #55ff55;
    --warning: #ffff55;
    --error: #ff5555;
    --success-content: #005500;
    --warning-content: #555500;
    --error-content: #550000;
}

.dark-theme {
    --primary: #5567ff;
    --primary-content: #ffffff;
    --primary-dark: #2239ff;
    --primary-light: #8895ff;
    --secondary: #ff55bc;
    --secondary-content: #550033;
    --secondary-dark: #ff22a8;
    --secondary-light: #ff88d0;
    --background: #111222;
    --foreground: #191c34;
    --border: #292e56;
    --copy: #fafafd;
    --copy-light: #cbcee6;
    --copy-lighter: #878dc5;
    --success: #55ff55;
    --warning: #ffff55;
    --error: #ff5555;
    --success-content: #005500;
    --warning-content: #555500;
    --error-content: #550000;
}

#total a,
#total div,
#total h1,
#total h2,
#total span,
#total p {
    font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif !important;
    font-size: 15pt !important;
    color: var(--copy)!important
}

#bigbox {
    display: flex;
    flex-direction: row;
    width: 70%;
    max-width: 3000px;
    box-sizing: border-box;
    margin-left: 5%;
}

#menu {
    flex-basis: 30%;
    height: 100%;
    width: 100%;
}

#total {
    flex-basis: 70%;
    height: 100%;
    width: 100%;
}

pre {
    /* Preserve white spaces and wrap lines */
    word-wrap: normal;
    /* Break words when they exceed the width */
    overflow-wrap: normal;
    /* Ensure wrapping works across browsers */
    width: 100%;
    /* Set the width as needed */
    /* Optionally add ellipsis if text overflows */
    padding: 0;
    /* Remove padding that might add empty space */
    margin: 0;
    text-align: left;
}

@media (max-width:768px) {
    #bigbox {
        display: block !important;
        width: 90%;
        max-width: 700px;
        margin-left: 5%;
        margin-right: 5%;
        text-align: left;
    }
}