/* /Components/Pages/Auth/Login.razor.rz.scp.css */
/* /Components/Shared/DaleCombo.razor.rz.scp.css */
/* DALE-86 — themed combobox. The input reuses .input-field; we just add room for the chevron
   and draw the same chevron the styled <select>s use, so it reads as one of our dropdowns. The
   panel is positioned fixed by app.js (daleCombo) — here we only theme it. */
.dale-combo[b-gw158yk6bv] {
    position: relative;
}

.dale-combo__input[b-gw158yk6bv] {
    padding-right: 2rem;
}

.dale-combo__chevron[b-gw158yk6bv] {
    position: absolute;
    right: 0.6rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
}

.dale-combo__panel[b-gw158yk6bv] {
    /* Fixed + hidden from the first paint so it never flashes in normal flow before app.js
       (daleCombo) measures and places it — the helper flips visibility on once positioned. */
    position: fixed;
    visibility: hidden;
    z-index: 10075;
    max-height: 16rem;
    overflow-y: auto;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    padding: 0.25rem;
}

.dale-combo__opt[b-gw158yk6bv] {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.35rem 0.6rem;
    border: none;
    border-radius: 0.375rem;
    background: transparent;
    color: #111827;
    font-size: 0.8125rem;
    line-height: 1.25rem;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dale-combo__opt:hover[b-gw158yk6bv] {
    background: #f3f4f6;
}

.dale-combo__opt.is-active[b-gw158yk6bv] {
    background: var(--color-dale-50, #eef2ff);
    color: var(--color-dale-700, #4338ca);
    font-weight: 600;
}
/* /Components/Shared/HelpTooltip.razor.rz.scp.css */
/* DALE-84 — round "?" help badge. The tooltip body itself is rendered as a fixed,
   body-level node by app.js (window.daleHelp) so it overlays on top of the panel and
   never widens/scrolls it; .dale-help__bubble here is just the hidden content source. */

.dale-help[b-h8jdy6rf6g] {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
    border-radius: 9999px;
    background-color: #d1d5db; /* gray-300 */
    color: #4b5563;            /* gray-600 */
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    cursor: help;
    user-select: none;
    vertical-align: middle;
    transition: background-color .12s ease, color .12s ease;
}

.dale-help:hover[b-h8jdy6rf6g],
.dale-help:focus-visible[b-h8jdy6rf6g] {
    background-color: #0f766e; /* teal-700 accent */
    color: #ffffff;
    outline: none;
}

.dale-help__mark[b-h8jdy6rf6g] {
    pointer-events: none;
    margin-top: -0.5px;
}

/* Hidden content source — read by app.js into the floating tooltip. display:none so it
   never participates in the panel's layout/scroll (which caused the horizontal scrollbar). */
.dale-help__bubble[b-h8jdy6rf6g] {
    display: none;
}
/* /Components/Shared/RunningSyncs.razor.rz.scp.css */
/* Enter/leave transitions for the "running now" tiles. A new run fades + lifts into view; a finished or
   cancelled run fades + lifts out (the component keeps it mounted for LeaveMs so this can play). Keyframes are
   global by name but only the scoped .rs-enter / .rs-leave classes reference them, so they're confined here. */

.rs-enter[b-38v40k4pxv] {
    animation: rs-tile-in-b-38v40k4pxv 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.rs-leave[b-38v40k4pxv] {
    animation: rs-tile-out-b-38v40k4pxv 260ms ease-in forwards;
    pointer-events: none;
}

@keyframes rs-tile-in-b-38v40k4pxv {
    from { opacity: 0; transform: translateY(6px) scale(0.97); }
    to   { opacity: 1; transform: none; }
}

@keyframes rs-tile-out-b-38v40k4pxv {
    from { opacity: 1; transform: none; }
    to   { opacity: 0; transform: translateY(-4px) scale(0.96); }
}

/* Respect users who ask for less motion: no slide/scale, just appear/disappear. */
@media (prefers-reduced-motion: reduce) {
    .rs-enter[b-38v40k4pxv],
    .rs-leave[b-38v40k4pxv] {
        animation: none;
    }
}
/* /Components/Shared/ToastHost.razor.rz.scp.css */
/* Toasts slide/fade in on arrival instead of popping in instantly. */
.dale-toast[b-wf8dr5uqzb] {
    animation: dale-toast-in-b-wf8dr5uqzb 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-reduced-motion: reduce) {
    .dale-toast[b-wf8dr5uqzb] {
        animation: none;
    }
}

@keyframes dale-toast-in-b-wf8dr5uqzb {
    from { opacity: 0; transform: translateY(-6px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
