body {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
}

/* Default styling for the full title */
.navbar-brand .full-title {
    display: inline;
}

/* Default styling for the short title */
.navbar-brand .short-title {
    display: none;
}

/* Styling for smaller screens - hide full title, show short title */
@media (max-width: 576px) {
    .navbar-brand .full-title {
        display: none;
    }
    .navbar-brand .short-title {
        display: inline;
    }
}

.math-container {
    width: 100%; /* Take the full width of the container */
    max-width: 100%; /* Ensure it doesn’t exceed the container's width */
    font-size: 1em; /* Scale the font size */
    overflow-x: auto; /* Allow horizontal scrolling if the equation is too wide */
}

/* .math-container { */
/*     width: 100%; */
/*     overflow-x: auto; */
/*     text-align: center; */
/* } */

/* .math-container .katex { */
/*     font-size: calc(1vw + 0.5em); /\* Responsive font size based on viewport *\/ */
/* } */

