/* /Components/Layout/AICodingAssistant.razor.rz.scp.css */
/* AI Assistant Box */

#ai-assistant[b-gk266r5i4j] {
    position: absolute;
    bottom: 64px;
    left: 9px;
    width: 188px;
    border: 1px solid transparent;
    border-radius: 11px;
    padding: 5px 16px;
    background: linear-gradient(var(--kendo-color-surface), var(--kendo-color-surface)) padding-box, linear-gradient(114deg, #4b5ffa 0%, #c158e4 93%) border-box;
}

    #ai-assistant[b-gk266r5i4j]::before {
        content: "";
        position: absolute;
        z-index: 0;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: .18;
        background: url(ai-circle.png) center center no-repeat;
        background-size: cover;
    }

    #ai-assistant h4[b-gk266r5i4j],
    #ai-assistant > p[b-gk266r5i4j],
    #ai-assistant > a[b-gk266r5i4j] {
        position: relative;
        padding-left: 41px;
        z-index: 2;
    }

    #ai-assistant h4[b-gk266r5i4j] {
        position: relative;
        margin: 0 0 .3em;
        font-size: 20px;
        line-height: 1.4;
        font-weight: 500;
    }

    #ai-assistant .k-icon[b-gk266r5i4j] {
        position: absolute;
        left: 0;
        top: 0;
        color: #4b5ffa;
    }

    #ai-assistant > a[b-gk266r5i4j] {
        color: #a75ae9;
        text-decoration: none;
    }

        #ai-assistant > a:hover[b-gk266r5i4j] {
            text-decoration: underline;
        }
/* /Components/Layout/MainLayout.razor.rz.scp.css */
#copyright[b-f7q90s53t5] {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

#copyright span:last-child[b-f7q90s53t5] {
    color: #333 !important;
    font-size: 0.9em;
    font-weight: 600;
    opacity: 1 !important;
}

.appbar-bottom[b-f7q90s53t5] {
    position: sticky;
    bottom: 0;
}

.main-navigation[b-f7q90s53t5] {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: 40px;
}

.nav-link[b-f7q90s53t5] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
}

    .nav-link:hover[b-f7q90s53t5] {
        background-color: rgba(255, 255, 255, 0.1);
        transform: translateY(-1px);
    }

    .nav-link.active[b-f7q90s53t5] {
        background: linear-gradient(135deg, #57b432 0%, #4a9e2a 100%);
        font-weight: 700;
        border-bottom: 3px solid #fff;
        box-shadow: 0 4px 12px rgba(87, 180, 50, 0.4), 0 2px 4px rgba(0, 0, 0, 0.2);
        transform: translateY(-2px);
    }

        .nav-link.active[b-f7q90s53t5]::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
            border-radius: 6px;
            pointer-events: none;
        }


