@import '_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.b6pgxrrsua.bundle.scp.css';

/* /Controls/AboutComponent.razor.rz.scp.css */
.mainContainer[b-j1bk0zrxvl] {
    display: flex;
    flex-wrap:wrap;
    flex-direction: row;
    margin-top: 15px;
    min-height: 70vh;
    width: 92vw;
}

.leftContent[b-j1bk0zrxvl]{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content:center;
    flex-basis: 400px;
    flex-shrink:0;
    flex-grow:1;
}

.rightContent[b-j1bk0zrxvl] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    flex-basis: 400px;
    flex-shrink: 0;
    flex-grow: 1;
    padding-right: 5px;
}

.topContent[b-j1bk0zrxvl]{

}

.bottomContent[b-j1bk0zrxvl]{

}


/* /Controls/BaseComponent.razor.rz.scp.css */
.mainContainer[b-w9num6kcaw] {
    margin-top: 15px;
    min-height: 70vh;
    width: 92vw;
    background-color: red;
}
/* /Controls/BlazorComponent.razor.rz.scp.css */
.mainContainer[b-dy3tq733wn]{
    margin:20px;
    display:flex;
    flex-direction:column;
    align-items:center;
    min-width:80vw;
    text-align:center;
}

.tech-section[b-dy3tq733wn] {
    max-width: 700px;
    margin: 2rem auto;
    padding: 1.5rem 2rem;
    background-color: antiquewhite;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    font-family: "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
}

    .tech-section h2[b-dy3tq733wn] {
        font-size: 1.8rem;
        color: #2563eb;
        margin-bottom: 1rem;
        border-bottom: 2px solid #2563eb;
        display: inline-block;
        padding-bottom: 0.25rem;
    }

    .tech-section a[b-dy3tq733wn] {
        color: #2563eb;
        text-decoration: none;
        font-weight: 500;
    }

        .tech-section a:hover[b-dy3tq733wn] {
            text-decoration: underline;
        }
/* /Controls/BlenderComponent.razor.rz.scp.css */
.mainContainer[b-31b05je86f] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.color-ring[b-31b05je86f] {
    position: relative;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

    .color-ring:hover[b-31b05je86f] {
        cursor: pointer;       
    }

/* Der bunte Ring */
.color-ring[b-31b05je86f]::before {
    content: "";
    position: absolute;
    top: 42%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    background: conic-gradient( from 0deg, #ff2d55, #ff9500, #ffcc00, #4cd964, #34aadc, #5856d6, #ff2d55 );
    animation: spin-b-31b05je86f var(--spin-speed) linear infinite, hue-b-31b05je86f var(--hue-speed) linear infinite;
}

/* Der innere Kreis */
.color-ring .content[b-31b05je86f] {
    display: block;
    z-index: 1;
    width: calc(100% - 2 * var(--thickness));
    height: calc(100% - 2 * var(--thickness));
    border-radius: 50%;
    background-image: url("images/ArtStation-logomark - Transparent.png");
    background-repeat: no-repeat; /* Kein Kacheln */
    background-position: center; /* Zentriert */
    background-size: contain; /* Komplett sichtbar, kein Beschnitt */
    box-shadow: 2px 2px 8px rgba(0,0,0,0.08);
}

    .color-ring .content:hover[b-31b05je86f] {
        box-shadow: 0 0 8px #00ffff, 0 0 16px #00ffff;
    }


    @keyframes spin-b-31b05je86f {
        to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes hue-b-31b05je86f {
    to {
        filter: hue-rotate(360deg);
    }
}
/* /Controls/NavBarComponent.razor.rz.scp.css */
.navBar[b-p59y8umlzm] {
    top: 0;
    position: sticky;
    display: flex;
    justify-content: space-around;
    width: 95vw;
    background-color: rgb(25, 25, 25, 1);
    height: 3rem;
}

.navButton[b-p59y8umlzm] {
    position: relative;
    background: none;
    border: none;
    color: var(--neon-blue); /* Variable statt fester Farbe */
    font-size: 1.1rem;
    padding: 8px 16px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

    .navButton[b-p59y8umlzm]::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 4px;
        width: 0;
        height: 2px;
        background: var(--neon-blue);
        box-shadow: 0 0 8px #00ffff, 0 0 16px #00ffff;
        transform: translateX(-50%);
        transition: width 0.3s ease;
    }

    .navButton:hover[b-p59y8umlzm] {
        color: #b3ffff;
        text-shadow: var(--hover-glow);
    }

        .navButton:hover[b-p59y8umlzm]::after {
            width: 100%;
        }

    .navButton.active[b-p59y8umlzm] {
        color: #b3ffff;
        text-shadow: 0 0 6px var(--neon-blue), 0 0 12px var(--neon-blue);
    }

.navButton.active[b-p59y8umlzm]::after {
    width: 100%;
}

.navButton .text[b-p59y8umlzm] {
    display: none;
}
.navButton .icon[b-p59y8umlzm] {
    display: inline-block;
    height: 100%;
}

@media (min-width: 756px) {
    .navButton .text[b-p59y8umlzm] {
        display: inline;
    }

    .navButton .icon[b-p59y8umlzm] {
        display: none;
    }
}
/* /Controls/PrintComponent.razor.rz.scp.css */
.mainContainer[b-i3fitkftdh] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 15px;
    min-height: 70vh;
    width: 92vw;
}
/* /Controls/UnityComponent.razor.rz.scp.css */
.mainContainer[b-rbghvo29cv] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 15px;
    min-height: 70vh;
    width: 92vw;
}
/* /Pages/Home.razor.rz.scp.css */
.mainContainer[b-vbq06ivqgh] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    min-height: 100vh;
    background-color: gray;
}

.contentContainer[b-vbq06ivqgh] {
    width: 95vw;
    height: 95vh;
    background-color: rgba(50, 50, 50, 1);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    overflow: hidden;
}

.scrollContainer[b-vbq06ivqgh] {
    display: flex;
    justify-content: center;
    background-color:burlywood;
    height: 90vh;
    overflow-y: auto;
}

.scrollContent[b-vbq06ivqgh] {
    display: flex;
    flex-wrap: wrap;
}
