/* _content/BlazorBudgetApp/Shared/Components/AuthLoading.razor.rz.scp.css */
/* Shared/Components/AuthLoading.razor.css */
.auth-loading-overlay[b-6mxupfhf8v] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-loading-overlay.visible[b-6mxupfhf8v] {
    visibility: visible;
    opacity: 1;
}

.auth-loading-card[b-6mxupfhf8v] {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    width: 90%;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

.auth-loading-overlay.visible .auth-loading-card[b-6mxupfhf8v] {
    transform: translateY(-20px);
}

/* User Profile Container */
.user-profile-container[b-6mxupfhf8v] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.profile-image-wrapper[b-6mxupfhf8v] {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    background: #f3f3f3;
    border: 1px solid #edebe9;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.profile-image[b-6mxupfhf8v] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-initials[b-6mxupfhf8v] {
    width: 100%;
    height: 100%;
    background: #0078d4;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 500;
    font-family: 'Segoe UI', sans-serif;
}

.user-email-text[b-6mxupfhf8v] {
    font-family: 'Segoe UI', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #323130;
}

/* Microsoft Progress Ring */
.microsoft-ring-container[b-6mxupfhf8v] {
    height: 48px;
    margin-bottom: 24px;
}

.microsoft-ring[b-6mxupfhf8v] {
    position: relative;
    width: 40px;
    height: 40px;
}

.microsoft-ring .dot[b-6mxupfhf8v] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: rotate(225deg);
    animation: orbit-b-6mxupfhf8v 5.5s infinite;
}

.microsoft-ring .dot[b-6mxupfhf8v]::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #0078d4;
}

.microsoft-ring .dot:nth-child(2)[b-6mxupfhf8v] {
    animation-delay: 240ms;
}

.microsoft-ring .dot:nth-child(3)[b-6mxupfhf8v] {
    animation-delay: 480ms;
}

.microsoft-ring .dot:nth-child(4)[b-6mxupfhf8v] {
    animation-delay: 720ms;
}

.microsoft-ring .dot:nth-child(5)[b-6mxupfhf8v] {
    animation-delay: 960ms;
}

@keyframes orbit-b-6mxupfhf8v {
    0% {
        transform: rotate(225deg);
        opacity: 1;
        animation-timing-function: ease-out;
    }

    7% {
        transform: rotate(345deg);
        animation-timing-function: linear;
    }

    30% {
        transform: rotate(455deg);
        animation-timing-function: ease-in-out;
    }

    39% {
        transform: rotate(690deg);
        animation-timing-function: linear;
    }

    70% {
        transform: rotate(815deg);
        opacity: 1;
        animation-timing-function: ease-out;
    }

    75% {
        transform: rotate(945deg);
        animation-timing-function: ease-out;
    }

    76% {
        transform: rotate(945deg);
        opacity: 0;
    }

    100% {
        transform: rotate(945deg);
        opacity: 0;
    }
}

/* Status Text */
.auth-status-container[b-6mxupfhf8v] {
    text-align: center;
}

.auth-status-title[b-6mxupfhf8v] {
    font-family: 'Segoe UI', -apple-system, sans-serif;
    font-size: 24px;
    font-weight: 350;
    color: #323130;
    margin: 0 0 8px 0;
}

.auth-status-subtitle[b-6mxupfhf8v] {
    font-family: 'Segoe UI', sans-serif;
    font-size: 15px;
    color: #605e5c;
    margin: 0;
}

/* Footer dots */
.auth-footer[b-6mxupfhf8v] {
    position: fixed;
    bottom: 40px;
    display: flex;
    gap: 8px;
}

.footer-dot[b-6mxupfhf8v] {
    width: 4px;
    height: 4px;
    background: #c8c6c4;
    border-radius: 50%;
}

.animate-fade-in[b-6mxupfhf8v] {
    animation: fadeIn-b-6mxupfhf8v 0.5s ease-out;
}

@keyframes fadeIn-b-6mxupfhf8v {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* _content/BlazorBudgetApp/Shared/Components/LoadingOverlay.razor.rz.scp.css */
.loading-overlay[b-lyjdsgyaaf] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.loading-overlay.visible[b-lyjdsgyaaf] {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.loading-backdrop[b-lyjdsgyaaf] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.loading-content[b-lyjdsgyaaf] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.85);
    padding: 2.5rem 4rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.loading-overlay.visible .loading-content[b-lyjdsgyaaf] {
    transform: scale(1);
}

.spinner-container[b-lyjdsgyaaf] {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.fluent-spinner[b-lyjdsgyaaf] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: #106EBE;
    /* Azure Cobalt */
    border-radius: 50%;
    animation: spin-b-lyjdsgyaaf 1s cubic-bezier(0.5, 0.1, 0.5, 0.9) infinite;
}

.outer-ring[b-lyjdsgyaaf] {
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 1px solid rgba(16, 110, 190, 0.15);
    border-radius: 50%;
    animation: pulse-b-lyjdsgyaaf 2s ease-out infinite;
}

.loading-message[b-lyjdsgyaaf] {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: #323130;
    letter-spacing: 0.02em;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dots[b-lyjdsgyaaf] {
    position: absolute;
    left: 100%;
    display: flex;
    margin-left: 2px;
}

.dots .dot[b-lyjdsgyaaf] {
    animation: dots-b-lyjdsgyaaf 1.4s infinite;
    opacity: 0;
}

.dots .dot:nth-child(2)[b-lyjdsgyaaf] {
    animation-delay: 0.2s;
}

.dots .dot:nth-child(3)[b-lyjdsgyaaf] {
    animation-delay: 0.4s;
}

@keyframes spin-b-lyjdsgyaaf {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse-b-lyjdsgyaaf {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        transform: scale(1.15);
        opacity: 0;
    }
}

@keyframes dots-b-lyjdsgyaaf {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}
/* _content/BlazorBudgetApp/Shared/MainLayout.razor.rz.scp.css */
.page[b-a7x9gd6tu2] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-a7x9gd6tu2] {
    flex: 1;
}

.sidebar[b-a7x9gd6tu2] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-a7x9gd6tu2] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-a7x9gd6tu2]  a, .top-row .btn-link[b-a7x9gd6tu2] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-a7x9gd6tu2] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-a7x9gd6tu2] {
        display: none;
    }

    .top-row.auth[b-a7x9gd6tu2] {
        justify-content: space-between;
    }

    .top-row a[b-a7x9gd6tu2], .top-row .btn-link[b-a7x9gd6tu2] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-a7x9gd6tu2] {
        flex-direction: row;
    }

    .sidebar[b-a7x9gd6tu2] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-a7x9gd6tu2] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-a7x9gd6tu2], article[b-a7x9gd6tu2] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* _content/BlazorBudgetApp/Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-vqwdqa7ohj] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-vqwdqa7ohj] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-vqwdqa7ohj] {
    font-size: 1.1rem;
}

.oi[b-vqwdqa7ohj] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-vqwdqa7ohj] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-vqwdqa7ohj] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-vqwdqa7ohj] {
        padding-bottom: 1rem;
    }

    .nav-item[b-vqwdqa7ohj]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-vqwdqa7ohj]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-vqwdqa7ohj]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-vqwdqa7ohj] {
        display: none;
    }

    .collapse[b-vqwdqa7ohj] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-vqwdqa7ohj] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
