/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-ymeyxqykm0],
.components-reconnect-repeated-attempt-visible[b-ymeyxqykm0],
.components-reconnect-failed-visible[b-ymeyxqykm0],
.components-pause-visible[b-ymeyxqykm0],
.components-resume-failed-visible[b-ymeyxqykm0],
.components-rejoining-animation[b-ymeyxqykm0] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-ymeyxqykm0],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-ymeyxqykm0],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-ymeyxqykm0],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-ymeyxqykm0],
#components-reconnect-modal.components-reconnect-retrying[b-ymeyxqykm0],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-ymeyxqykm0],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-ymeyxqykm0],
#components-reconnect-modal.components-reconnect-failed[b-ymeyxqykm0],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-ymeyxqykm0] {
    display: block;
}


#components-reconnect-modal[b-ymeyxqykm0] {
    /* Theme tokens so the dialog tracks the active DaisyUI theme. The default
       template hardcoded a white surface with no text color, which rendered as
       a blank white box on dark themes (light text on white). */
    background-color: var(--color-base-100);
    color: var(--color-base-content);
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 1px solid var(--color-hairline);
    border-radius: var(--radius-card);
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-ymeyxqykm0 0.5s both;

    &[open] {
        animation: components-reconnect-modal-slideUp-b-ymeyxqykm0 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-ymeyxqykm0 0.5s ease-in-out 0.3s;
        animation-fill-mode: both;
    }

}

#components-reconnect-modal[b-ymeyxqykm0]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-ymeyxqykm0 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-ymeyxqykm0 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-ymeyxqykm0 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-ymeyxqykm0 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-ymeyxqykm0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-ymeyxqykm0] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-ymeyxqykm0] {
    border: 0;
    background-color: var(--color-primary);
    color: var(--color-primary-content);
    padding: 4px 24px;
    border-radius: var(--radius-control);
}

#components-reconnect-modal button:hover[b-ymeyxqykm0] {
    filter: brightness(0.92);
}

#components-reconnect-modal button:active[b-ymeyxqykm0] {
    filter: brightness(0.88);
}

.components-rejoining-animation[b-ymeyxqykm0] {
    position: relative;
    width: 80px;
    height: 80px;
}

.components-rejoining-animation div[b-ymeyxqykm0] {
    position: absolute;
    border: 3px solid var(--color-primary);
    opacity: 1;
    border-radius: 50%;
    animation: components-rejoining-animation-b-ymeyxqykm0 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.components-rejoining-animation div:nth-child(2)[b-ymeyxqykm0] {
    animation-delay: -0.5s;
}

@keyframes components-rejoining-animation-b-ymeyxqykm0 {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Layout/Shell/CommandPalette.razor.rz.scp.css */
/* Placeholder tint for the palette search field. Kept here rather than as a
   `placeholder:` utility so the markup stays free of the forbidden bare
   `placeholder` token (arch-test enforced). */
.cmdk-input[b-55v72jevwa]::placeholder {
    color: var(--color-base-content);
    opacity: 0.4;
}
/* /Components/Pages/Dashboard/AumDistributionCard.razor.rz.scp.css */
/* Spotlight a fund's slice when its row (or the arc itself) is hovered, muting
   the rest. Cross-element highlight done in CSS via :has() so it stays instant
   and needs no interactivity — the index pairs each row with its arc. */

.aum-seg[b-no4wgl30lg] {
    transition: opacity 0.15s var(--ease-standard), stroke-width 0.15s var(--ease-standard);
}

/* Draw the ring in on load: a short quarter-turn sweep into place reads as the
   chart assembling, not as decoration. Suppressed when the user asks for less
   motion. */
@media (prefers-reduced-motion: no-preference) {
    .aum svg[b-no4wgl30lg] {
        transform-origin: center;
        animation: aum-donut-in-b-no4wgl30lg 0.6s var(--ease-standard) both;
    }
}

@keyframes aum-donut-in-b-no4wgl30lg {
    from {
        opacity: 0;
        transform: rotate(-90deg) scale(0.92);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.aum:has([data-i="0"]:hover) .aum-seg:not([data-i="0"])[b-no4wgl30lg],
.aum:has([data-i="1"]:hover) .aum-seg:not([data-i="1"])[b-no4wgl30lg],
.aum:has([data-i="2"]:hover) .aum-seg:not([data-i="2"])[b-no4wgl30lg],
.aum:has([data-i="3"]:hover) .aum-seg:not([data-i="3"])[b-no4wgl30lg],
.aum:has([data-i="4"]:hover) .aum-seg:not([data-i="4"])[b-no4wgl30lg],
.aum:has([data-i="5"]:hover) .aum-seg:not([data-i="5"])[b-no4wgl30lg],
.aum:has([data-i="6"]:hover) .aum-seg:not([data-i="6"])[b-no4wgl30lg],
.aum:has([data-i="7"]:hover) .aum-seg:not([data-i="7"])[b-no4wgl30lg] {
    opacity: 0.18;
}

.aum:has([data-i="0"]:hover) .aum-seg[data-i="0"][b-no4wgl30lg],
.aum:has([data-i="1"]:hover) .aum-seg[data-i="1"][b-no4wgl30lg],
.aum:has([data-i="2"]:hover) .aum-seg[data-i="2"][b-no4wgl30lg],
.aum:has([data-i="3"]:hover) .aum-seg[data-i="3"][b-no4wgl30lg],
.aum:has([data-i="4"]:hover) .aum-seg[data-i="4"][b-no4wgl30lg],
.aum:has([data-i="5"]:hover) .aum-seg[data-i="5"][b-no4wgl30lg],
.aum:has([data-i="6"]:hover) .aum-seg[data-i="6"][b-no4wgl30lg],
.aum:has([data-i="7"]:hover) .aum-seg[data-i="7"][b-no4wgl30lg] {
    opacity: 1;
    stroke-width: 5;
}
