:root {
    --coral: #FF6056;
    --purple: #382060;
    --lightgray: #F6F6F6;
    --darkgray: #97999B;
    --mud-palette-primary-darken: var(--purple);
    --mud-palette-info-darken: var(--purple);
    --mud-palette-primary: var(--purple);
    --myMaxWidth: 1000px;
    --myMaxWidthS: 450px;
    --header-font-size: 14px; /* Standardwert */
}

.myCenterScreen {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.myCenterScreenSmall {
    position: fixed;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.myWelcomeText {
    text-align: center;
    color: black;
    font-size: 18px;
    font-weight: 600;
}

.myMaintenance {
    text-align: center;
    color: var(--purple);
    font-size: 12px;
}

.myMaintenanceSmall {
    text-align: center;
    color: var(--purple);
    font-size: 12px;
}

.myHeaderText {
    color: white;
}

.myFooterText {
    color: var(--coral);
    margin-right: 1em;
    margin-left: 1em;
    font-size: 1em;
    font-size: var(--header-font-size);
}

.myFooterTextS {
    color: var(--coral);
    margin-right: 0.8em;
    margin-left: 0.8em;
    font-size: 0.8em;
    font-size: var(--header-font-size);
}

.myLabel {
    color: black;
    font-weight: bold;
    font-size: 1.5em;
    margin-left: 0px;
    margin-top: 8px;
    margin-right: 0px;
    margin-bottom: 5px;
    padding-left: 5px;
}

.myInfoText {
    color: var(--purple);
}

/* Primär Button -- Happy Path */
.myMainButton {
    background: var(--coral);
    color: white;
}

/* Sekundär Button mit Rahmen */
.myAlternateButtonWithBorder {
    background: white;
    color: var(--coral);
    border-width: 1px;
    border-style: solid;
    border-color: var(--coral);
}

/* Sekundär Button mit Rahmen */
.myAlternateButtonWithOutBorder {
    background: white;
    color: var(--coral);
    border-width: 0px;
}

.myFaqHeader {
    color: var(--coral);
    font-weight: bold;
    font-size: 1.5em;
}

.myFaqSubHeader {
    color: black;
    font-size: 1em;
}

.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

    .loading-progress circle {
        fill: none;
        stroke: #e0e0e0;
        stroke-width: 0.6rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child {
            stroke: #1b6ec2;
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
            transition: stroke-dasharray 0.05s ease-in-out;
        }

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}

    .loading-progress-text:after {
        content: var(--blazor-load-percentage-text, "Loading");
    }

.myAngledButton {
    background-color: var(--coral);
    color: white;
    font-size: 1em;
    font-weight: bold;
    padding: 10px 20px;
    border: 1px solid var(--coral);
    cursor: pointer;
    position: relative;
    text-transform: uppercase;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}

    .myAngledButton:hover {
        color: var(--lightgray);
        background-color: var(--coral);
    }

.dynamic-header {
    color: white;
    margin-left: 16px;
}

.centered-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
    text-align: center;
    flex-direction: column;
}

.alert-box {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.myTopBarButton {
    color: white;
    margin: 0;
    padding: 4px 12px;
    font-size: var(--header-font-size);
    min-width: unset;
}

.active-menu-item {
    font-weight: bold;
    background-color: white;
    color: var(--coral);
    border-radius: 4px;
}

.myDivider {
    border-color: white;
    opacity: 0.5;
}

.my-appbar {
    background-color: var(--coral);
    width: 100%;
    min-height: 70px;
    padding: 35px 1px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.nav-button {
    color: white;
    font-size: 0.8rem;
    font-weight: normal;
    background-color: transparent;
    padding: 4px 8px;
    transition: all 0.2s ease;
}

    .nav-button.active {
        font-size: 1rem;
        font-weight: bold;
        color: white;
    }

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.6);
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
}