/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
#components-reconnect-modal[b-j5j08zi5co] {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    overflow: hidden;
    background-color: #fff;
    opacity: 0.9;
    text-align: center;
    font-weight: bold;
    border: none;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    margin: 0;
    padding: 0;
}

    #components-reconnect-modal.components-reconnect-show[b-j5j08zi5co],
    #components-reconnect-modal[open][b-j5j08zi5co] {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #components-reconnect-modal.components-reconnect-failed[b-j5j08zi5co] {
        display: flex;
        align-items: center;
        justify-content: center;
    }

.components-reconnect-container[b-j5j08zi5co] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.components-reconnect-first-attempt-visible[b-j5j08zi5co],
.components-reconnect-repeated-attempt-visible[b-j5j08zi5co],
.components-reconnect-failed-visible[b-j5j08zi5co],
.components-pause-visible[b-j5j08zi5co],
.components-resume-failed-visible[b-j5j08zi5co] {
    display: none;
}

dialog[open].components-reconnect-show .components-reconnect-first-attempt-visible[b-j5j08zi5co] {
    display: block;
}

dialog[open].components-reconnect-failed .components-reconnect-failed-visible[b-j5j08zi5co] {
    display: block;
}

dialog[open].components-reconnect-failed #components-reconnect-button[b-j5j08zi5co] {
    display: block;
}

dialog[open].components-reconnect-repeated-attempt .components-reconnect-repeated-attempt-visible[b-j5j08zi5co] {
    display: block;
}

dialog[open].components-pause .components-pause-visible[b-j5j08zi5co] {
    display: block;
}

dialog[open].components-pause #components-resume-button[b-j5j08zi5co],
dialog[open].components-resume-failed #components-resume-button[b-j5j08zi5co] {
    display: block;
}

dialog[open].components-resume-failed .components-resume-failed-visible[b-j5j08zi5co] {
    display: block;
}

.components-rejoining-animation[b-j5j08zi5co] {
    display: flex;
    gap: 8px;
}

    .components-rejoining-animation div[b-j5j08zi5co] {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: var(--mud-palette-primary, #594AE2);
        animation: rejoining-bounce-b-j5j08zi5co 1.4s infinite ease-in-out both;
    }

        .components-rejoining-animation div:nth-child(1)[b-j5j08zi5co] {
            animation-delay: -0.32s;
        }

        .components-rejoining-animation div:nth-child(2)[b-j5j08zi5co] {
            animation-delay: -0.16s;
        }

@keyframes rejoining-bounce-b-j5j08zi5co {
    0%, 80%, 100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

#components-reconnect-button[b-j5j08zi5co],
#components-resume-button[b-j5j08zi5co] {
    display: none;
    cursor: pointer;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    background-color: var(--mud-palette-primary, #594AE2);
    color: #fff;
    font-size: 14px;
}
/* /Components/Pages/Home.razor.rz.scp.css */
.dashboard-header[b-hfidcsoeuf] {
    background: linear-gradient(135deg, var(--mud-palette-primary) 0%, #5b4ddb 100%);
    color: #fff;
    overflow: hidden;
    position: relative;
}

.dashboard-header[b-hfidcsoeuf]::after {
    background: radial-gradient(circle, rgba(255, 255, 255, .18) 0%, transparent 65%);
    content: "";
    height: 340px;
    position: absolute;
    right: -100px;
    top: -190px;
    width: 340px;
}

.dashboard-header-content[b-hfidcsoeuf] {
    position: relative;
    z-index: 1;
}

.dashboard-header .mud-button-root[b-hfidcsoeuf] {
    background-color: rgba(255, 255, 255, .16);
    color: #fff;
}

.dashboard-header .mud-button-root:hover[b-hfidcsoeuf] {
    background-color: rgba(255, 255, 255, .26);
}

.metric-card[b-hfidcsoeuf] {
    border: 1px solid var(--mud-palette-divider);
    height: 100%;
    transition: transform .2s ease, box-shadow .2s ease;
}

.metric-card:hover[b-hfidcsoeuf] {
    box-shadow: var(--mud-elevation-6);
    transform: translateY(-3px);
}

.metric-icon[b-hfidcsoeuf] {
    align-items: center;
    background-color: color-mix(in srgb, var(--mud-palette-primary) 14%, transparent);
    border-radius: 12px;
    display: inline-flex;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.dashboard-panel[b-hfidcsoeuf] {
    border: 1px solid var(--mud-palette-divider);
    height: 100%;
}

.report-row[b-hfidcsoeuf] {
    border-radius: 8px;
    text-decoration: none;
}

.report-row:hover[b-hfidcsoeuf] {
    background: var(--mud-palette-action-default-hover);
}

.quick-action[b-hfidcsoeuf] {
    border: 1px solid var(--mud-palette-divider);
    border-radius: 10px;
    color: inherit;
    text-decoration: none;
    transition: background-color .2s ease, border-color .2s ease;
}

.quick-action:hover[b-hfidcsoeuf] {
    background: color-mix(in srgb, var(--mud-palette-primary) 8%, transparent);
    border-color: var(--mud-palette-primary);
}
