/* /Components/Layout/AuthLayout.razor.rz.scp.css */
/* Scoped styles for AuthLayout (login/logout screens) */

:root[b-n7rbq0fg24] {
    --bg-start: #0f172a; /* slate-900 */
    --bg-end: #1e293b;   /* slate-800 */
}

.auth-page[b-n7rbq0fg24] {
    min-height: 100dvh;
    display: grid;
    place-items: center;
    background: radial-gradient(1200px 600px at 80% -10%, rgba(56,189,248,0.15), transparent 60%),
                radial-gradient(1000px 800px at -10% 110%, rgba(34,197,94,0.12), transparent 60%),
                linear-gradient(180deg, var(--bg-start), var(--bg-end));
}

.auth-main[b-n7rbq0fg24] {
    width: 100%;
    padding: 2rem 1rem;
}

/* Shared auth card/wrapper styles so Login and Logout can reuse them */
.login-wrapper[b-n7rbq0fg24] {
    width: min(92vw, 440px);
    margin-inline: auto;
}

.login-card[b-n7rbq0fg24] {
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 28px;
    color: #e5e7eb; /* slate-200 */
}

.login-header[b-n7rbq0fg24] {
    text-align: center;
    margin-bottom: 20px;
}

.login-icon[b-n7rbq0fg24] {
    width: 56px;
    height: 56px;
    margin: 0 auto 10px auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(56,189,248,0.9), rgba(34,197,94,0.8));
    color: #0b1220;
    font-size: 26px;
    box-shadow: 0 8px 24px rgba(34,197,94,0.35), 0 2px 6px rgba(56,189,248,0.25);
}

.login-title[b-n7rbq0fg24] {
    margin: 0 0 4px;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.login-subtitle[b-n7rbq0fg24] {
    margin: 0;
    color: #cbd5e1; /* slate-300 */
    font-size: 0.95rem;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-hg4n952zgz] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-hg4n952zgz] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-dunv8wh3xq],
.components-reconnect-repeated-attempt-visible[b-dunv8wh3xq],
.components-reconnect-failed-visible[b-dunv8wh3xq],
.components-pause-visible[b-dunv8wh3xq],
.components-resume-failed-visible[b-dunv8wh3xq],
.components-rejoining-animation[b-dunv8wh3xq] {
    display: none;
}

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


#components-reconnect-modal[b-dunv8wh3xq] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    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-dunv8wh3xq 0.5s both;
    &[open]

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

#components-reconnect-modal button[b-dunv8wh3xq] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-dunv8wh3xq] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-dunv8wh3xq] {
        background-color: #6b9ed2;
    }

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

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

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

@keyframes components-rejoining-animation-b-dunv8wh3xq {
    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/Pages/Account/Login.razor.rz.scp.css */
/* Scoped styles for the Login page */

.login-wrapper[b-ev4leda0lc] {
    width: min(92vw, 440px);
    margin-inline: auto;
}

.login-card[b-ev4leda0lc] {
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 28px;
    color: #e5e7eb; /* slate-200 */
}

.login-header[b-ev4leda0lc] {
    text-align: center;
    margin-bottom: 20px;
}

.login-icon[b-ev4leda0lc] {
    width: 56px;
    height: 56px;
    margin: 0 auto 10px auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(56,189,248,0.9), rgba(34,197,94,0.8));
    color: #0b1220;
    font-size: 26px;
    box-shadow: 0 8px 24px rgba(34,197,94,0.35), 0 2px 6px rgba(56,189,248,0.25);
}

.login-title[b-ev4leda0lc] {
    margin: 0 0 4px;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.login-subtitle[b-ev4leda0lc] {
    margin: 0;
    color: #cbd5e1; /* slate-300 */
    font-size: 0.95rem;
}

.login-alert[b-ev4leda0lc] {
    border-radius: 12px;
    padding: 12px 14px;
    background: rgba(239,68,68,0.1); /* red-500 */
    border: 1px solid rgba(239,68,68,0.35);
    color: #fecaca; /* red-200 */
    margin-bottom: 14px;
}

.login-form[b-ev4leda0lc] {
    display: grid;
    gap: 14px;
}

.input-group label[b-ev4leda0lc] {
    display: block;
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-bottom: 6px;
}

.input-group input[b-ev4leda0lc] {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(15, 23, 42, 0.55);
    color: #e5e7eb;
    border-radius: 12px;
    padding: 12px 14px;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.input-group input[b-ev4leda0lc]::placeholder {
    color: #94a3b8; /* slate-400 */
}

.input-group input:focus[b-ev4leda0lc] {
    border-color: rgba(56,189,248,0.7); /* sky-400 */
    box-shadow: 0 0 0 4px rgba(56,189,248,0.15);
    background: rgba(15, 23, 42, 0.7);
}

.login-button[b-ev4leda0lc] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: 0;
    border-radius: 12px;
    padding: 12px 16px;
    font-weight: 600;
    color: #0b1220;
    background: linear-gradient(90deg, rgba(56,189,248,1), rgba(34,197,94,1));
    box-shadow: 0 10px 24px rgba(34,197,94,0.25), 0 4px 10px rgba(56,189,248,0.2);
    cursor: pointer;
    transition: transform 100ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.login-button:hover[b-ev4leda0lc] {
    transform: translateY(-1px);
    filter: saturate(1.05);
    box-shadow: 0 14px 32px rgba(34,197,94,0.28), 0 6px 14px rgba(56,189,248,0.24);
}

.login-button:active[b-ev4leda0lc] {
    transform: translateY(0);
    filter: saturate(1.0);
}

@media (max-width: 380px) {
    .login-card[b-ev4leda0lc] {
        padding: 22px;
        border-radius: 14px;
    }
}
/* /Components/Pages/Documents/DocumentOverview.razor.rz.scp.css */
.dropzone[b-i3zdhdp9n4] {
    border: 2px dashed var(--mud-palette-lines-default);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: border-color 0.2s, background-color 0.2s;
    cursor: pointer;
}

.dropzone:hover[b-i3zdhdp9n4] {
    border-color: var(--mud-palette-primary);
    background-color: var(--mud-palette-primary-hover);
}
/* /Components/Pages/Events/EventPlanningTab.razor.rz.scp.css */
/* Sidebar */
.planning-sidebar[b-tzo15ex5gm] {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.sidebar-person[b-tzo15ex5gm] {
    padding: 6px 8px;
    margin-bottom: 4px;
    border-radius: 4px;
    cursor: grab;
    border: 1px solid transparent;
    transition: background-color 0.15s, border-color 0.15s;
}

.sidebar-person:hover[b-tzo15ex5gm] {
    background-color: var(--mud-palette-action-default-hover);
    border-color: var(--mud-palette-lines-default);
}

.sidebar-person:active[b-tzo15ex5gm] {
    cursor: grabbing;
}

.sidebar-person-selected[b-tzo15ex5gm] {
    background-color: var(--mud-palette-primary-lighten);
    border-color: var(--mud-palette-primary) !important;
    box-shadow: 0 0 0 1px var(--mud-palette-primary);
}

.drag-handle[b-tzo15ex5gm] {
    color: var(--mud-palette-text-disabled);
}

/* Availability bar */
.availability-bar[b-tzo15ex5gm] {
    display: flex;
    gap: 2px;
    margin-top: 4px;
}

.availability-segment[b-tzo15ex5gm] {
    flex: 1;
    height: 4px;
    border-radius: 2px;
}

.availability-segment.available[b-tzo15ex5gm] {
    background-color: var(--mud-palette-success);
}

.availability-segment.unavailable[b-tzo15ex5gm] {
    background-color: var(--mud-palette-error);
    opacity: 0.25;
}

.availability-segment.assigned[b-tzo15ex5gm] {
    background-color: var(--mud-palette-info);
}


/* Planning grid cells */
[b-tzo15ex5gm] .planning-cell {
    min-width: 130px;
    min-height: 60px;
    padding: 6px !important;
    vertical-align: top;
    transition: background-color 0.15s, outline-color 0.2s;
}

[b-tzo15ex5gm] .cell-empty {
    background-color: transparent;
}

[b-tzo15ex5gm] .cell-underfilled {
    background-color: #fff3e0;
}

[b-tzo15ex5gm] .cell-full {
    background-color: #e8f5e9;
}

[b-tzo15ex5gm] .cell-overfilled {
    background-color: #ffebee;
}

[b-tzo15ex5gm] .cell-disabled {
    background-color: #f5f5f5;
    text-align: center;
}

/* Drop target highlight */
[b-tzo15ex5gm] .planning-cell:not(.cell-disabled)[ondragover] {
    outline: 2px dashed var(--mud-palette-primary);
    outline-offset: -2px;
}

/* Draggable chips in cells */
.assignment-chip[b-tzo15ex5gm] {
    display: inline-block;
    cursor: grab;
}

.assignment-chip:active[b-tzo15ex5gm] {
    cursor: grabbing;
    opacity: 0.7;
}

.assignment-chip-highlighted[b-tzo15ex5gm] {
    background-color: var(--mud-palette-primary-lighten);
    border-radius: 16px;
    box-shadow: 0 0 0 2px var(--mud-palette-primary);
    animation: highlight-pulse-b-tzo15ex5gm 1.5s ease-in-out infinite;
}

@keyframes highlight-pulse-b-tzo15ex5gm {
    0%, 100% { box-shadow: 0 0 0 2px var(--mud-palette-primary); }
    50% { box-shadow: 0 0 8px 3px var(--mud-palette-primary); }
}
