/* Import other CSS files */
@import "fonts.css";
@import "colors.css";
@import "themes.css";
@import "layout.css";
@import "utilities.css";

/* Global styles */
body {
    margin: 0;
    font-family: "MaisonNeue";
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    pointer-events: all; /* blockiert alle Interaktionen */
}

/* Loading spinner styles */
.mud-progress-circular-circle {
    stroke: var(--base1) !important;
}