/* /Components/Layout/EmptyLayout.razor.rz.scp.css */
:global(body)[b-135islh49u] {
    margin: 0;
    background: var(--bg-page, #f8f9fa);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* /Components/Layout/LogoutForm.razor.rz.scp.css */
.sidebar-logout[b-hxtecrc0m4] {
    margin: 0;
    width: 100%;
}

.sidebar-logout-btn[b-hxtecrc0m4] {
    width: 100%;
    margin-top: 0.65rem;
    padding: 0.55rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-surface);
    color: var(--text-secondary);
    font: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.sidebar-logout-btn:hover[b-hxtecrc0m4] {
    background: var(--danger-bg);
    border-color: #fecaca;
    color: var(--danger);
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.app-shell[b-3ubzftx5qk] {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
    background: var(--bg-page);
    color: var(--text-primary);
    font-family: var(--font);
}

.sidebar[b-3ubzftx5qk] {
    background: var(--bg-surface);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.sidebar-brand[b-3ubzftx5qk] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.15rem 1rem;
    border-bottom: 1px solid var(--border-light);
    flex-shrink: 0;
}

.brand-icon[b-3ubzftx5qk] {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--brand-primary-light);
    color: var(--brand-primary);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.brand-name[b-3ubzftx5qk] {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    white-space: nowrap;
}

.sidebar-nav[b-3ubzftx5qk] {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0.75rem 0.65rem;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-nav[b-3ubzftx5qk]  .nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 42px;
    padding: 0 0.75rem;
    border-radius: var(--radius);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    transition: background 0.12s, color 0.12s;
}

.sidebar-nav[b-3ubzftx5qk]  .nav-item:hover {
    background: var(--border-light);
    color: var(--text-primary);
}

.sidebar-nav[b-3ubzftx5qk]  .nav-item.active {
    background: var(--brand-primary-light);
    color: var(--brand-primary);
    font-weight: 600;
}

.nav-icon[b-3ubzftx5qk] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
}

.nav-icon[b-3ubzftx5qk]  svg {
    display: block;
    width: 18px;
    height: 18px;
}

.nav-label[b-3ubzftx5qk] {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-footer[b-3ubzftx5qk] {
    padding: 0.85rem 0.75rem 1rem;
    border-top: 1px solid var(--border);
}

.sidebar-user[b-3ubzftx5qk] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.35rem;
    text-decoration: none;
    color: inherit;
    border-radius: var(--radius-md, 8px);
    transition: background 0.15s ease;
}

.sidebar-user:hover[b-3ubzftx5qk] {
    background: var(--surface-muted, rgba(0, 0, 0, 0.04));
}

.user-avatar[b-3ubzftx5qk] {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-primary), #4f8cff);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 0.78rem;
    font-weight: 700;
}

.user-meta strong[b-3ubzftx5qk] {
    display: block;
    font-size: 0.88rem;
    color: var(--text-primary);
}

.user-meta span[b-3ubzftx5qk] {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.main-area[b-3ubzftx5qk] {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.main-header-strip[b-3ubzftx5qk] {
    display: flex;
    justify-content: flex-end;
    padding: 0.85rem 1.75rem 0;
}

.content[b-3ubzftx5qk] {
    padding: 0.75rem 1.75rem 2rem;
    max-width: 1440px;
    width: 100%;
}

.mobile-nav-toggle[b-3ubzftx5qk] {
    display: none;
    border: 1px solid var(--border);
    background: var(--bg-surface);
    border-radius: 8px;
    padding: 0.35rem 0.65rem;
    font-size: 1.1rem;
    cursor: pointer;
    margin-right: 0.75rem;
}

.sidebar-overlay[b-3ubzftx5qk] {
    display: none;
}

@media (max-width: 960px) {
    .app-shell[b-3ubzftx5qk] {
        grid-template-columns: 1fr;
    }

    .mobile-nav-toggle[b-3ubzftx5qk] {
        display: inline-flex;
        align-items: center;
    }

    .main-header-strip[b-3ubzftx5qk] {
        display: flex;
        align-items: center;
    }

    .sidebar-overlay[b-3ubzftx5qk] {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.45);
        z-index: 90;
    }

    .sidebar[b-3ubzftx5qk] {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        z-index: 100;
        width: min(280px, 85vw);
        transform: translateX(-105%);
        transition: transform 0.2s ease;
        box-shadow: var(--shadow-lg);
    }

    .sidebar.open[b-3ubzftx5qk] {
        transform: translateX(0);
    }

    .content[b-3ubzftx5qk] {
        padding: 1rem;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-892xhb5vfx],
.components-reconnect-repeated-attempt-visible[b-892xhb5vfx],
.components-reconnect-failed-visible[b-892xhb5vfx],
.components-pause-visible[b-892xhb5vfx],
.components-resume-failed-visible[b-892xhb5vfx],
.components-rejoining-animation[b-892xhb5vfx] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-892xhb5vfx],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-892xhb5vfx],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-892xhb5vfx],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-892xhb5vfx],
#components-reconnect-modal.components-reconnect-retrying[b-892xhb5vfx],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-892xhb5vfx],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-892xhb5vfx],
#components-reconnect-modal.components-reconnect-failed[b-892xhb5vfx],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-892xhb5vfx] {
    display: block;
}


#components-reconnect-modal[b-892xhb5vfx] {
    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-892xhb5vfx 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-892xhb5vfx 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-892xhb5vfx 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-892xhb5vfx]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-892xhb5vfx 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-892xhb5vfx {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-892xhb5vfx {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-892xhb5vfx {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-892xhb5vfx] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-892xhb5vfx] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-892xhb5vfx] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-892xhb5vfx] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-892xhb5vfx] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-892xhb5vfx] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-892xhb5vfx] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-892xhb5vfx 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-892xhb5vfx] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-892xhb5vfx {
    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/TopBarActions.razor.rz.scp.css */
.topbar-interactive[b-kj45u77m0g] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.icon-btn[b-kj45u77m0g] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-surface);
    color: var(--text-secondary);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.icon-btn:hover[b-kj45u77m0g] {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    background: var(--brand-primary-light);
}

.notification-wrap[b-kj45u77m0g] {
    position: relative;
}

.notification-btn[b-kj45u77m0g] {
    position: relative;
}

.notification-badge[b-kj45u77m0g] {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--danger);
    color: #fff;
    font-size: 0.62rem;
    min-width: 17px;
    height: 17px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 700;
    border: 2px solid var(--bg-surface);
}

.notification-panel[b-kj45u77m0g] {
    position: absolute;
    right: 0;
    top: calc(100% + 0.5rem);
    width: 320px;
    max-height: 400px;
    overflow-y: auto;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 100;
}

.notification-header[b-kj45u77m0g] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
}

.notification-item[b-kj45u77m0g] {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.88rem;
}

.notification-item.unread[b-kj45u77m0g] {
    background: var(--brand-primary-light);
}

.notification-item p[b-kj45u77m0g] {
    margin: 0.25rem 0;
    color: var(--text-secondary);
}

.link-btn[b-kj45u77m0g] {
    background: none;
    border: none;
    color: var(--brand-primary);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.82rem;
}

.text-muted[b-kj45u77m0g] {
    color: var(--text-muted);
}
/* /Components/Pages/Home.razor.rz.scp.css */
.dash-loading[b-e5aqoid7gs] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    color: var(--text-secondary);
}

.dash-spinner[b-e5aqoid7gs] {
    width: 36px;
    height: 36px;
    border: 3px solid var(--border);
    border-top-color: var(--brand-primary);
    border-radius: 50%;
    animation: dash-spin-b-e5aqoid7gs 0.8s linear infinite;
    margin-bottom: 1rem;
}

@keyframes dash-spin-b-e5aqoid7gs {
    to { transform: rotate(360deg); }
}

.dash-header[b-e5aqoid7gs] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
}

.dash-header h1[b-e5aqoid7gs] {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.dash-header-actions[b-e5aqoid7gs] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    justify-content: flex-end;
    min-width: 280px;
}

.dash-search[b-e5aqoid7gs] {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.55rem 1rem;
    flex: 1;
    max-width: 420px;
    box-shadow: var(--shadow-sm);
}

.dash-search svg[b-e5aqoid7gs] {
    color: var(--text-muted);
    flex-shrink: 0;
}

.dash-search input[b-e5aqoid7gs] {
    border: none;
    outline: none;
    width: 100%;
    font: inherit;
    font-size: 0.92rem;
    color: var(--text-primary);
    background: transparent;
}

.dash-search input[b-e5aqoid7gs]::placeholder {
    color: var(--text-muted);
}

.btn-primary[b-e5aqoid7gs] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.15rem;
    background: var(--brand-primary);
    color: #fff;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.92rem;
    white-space: nowrap;
    box-shadow: 0 1px 2px rgba(20, 168, 0, 0.25);
    transition: background 0.15s, transform 0.1s;
}

.btn-primary:hover[b-e5aqoid7gs] {
    background: var(--brand-primary-hover);
    color: #fff;
}

.metric-grid[b-e5aqoid7gs] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.metric-card[b-e5aqoid7gs] {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.15rem 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
}

.metric-icon[b-e5aqoid7gs] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.metric-icon-blue[b-e5aqoid7gs] { background: var(--brand-primary-light); color: var(--brand-primary); }
.metric-icon-purple[b-e5aqoid7gs] { background: var(--brand-purple-light); color: var(--brand-purple); }
.metric-icon-orange[b-e5aqoid7gs] { background: var(--brand-orange-light); color: var(--brand-orange); }
.metric-icon-green[b-e5aqoid7gs] { background: var(--brand-teal-light); color: var(--brand-teal); }

.metric-value[b-e5aqoid7gs] {
    margin: 0;
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
}

.metric-label[b-e5aqoid7gs] {
    margin: 0.2rem 0 0;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.metric-sub[b-e5aqoid7gs] {
    margin: 0.25rem 0 0;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.dash-card[b-e5aqoid7gs] {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.25rem;
}

.dash-card-header[b-e5aqoid7gs] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.dash-card-header h2[b-e5aqoid7gs] {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
}

.dash-card-header a[b-e5aqoid7gs] {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--brand-primary);
}

.dash-empty[b-e5aqoid7gs] {
    padding: 2rem 1rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.table-wrap[b-e5aqoid7gs] {
    overflow-x: auto;
}

.dash-table[b-e5aqoid7gs] {
    width: 100%;
    border-collapse: collapse;
}

.dash-table th[b-e5aqoid7gs] {
    text-align: left;
    padding: 0.65rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.dash-table td[b-e5aqoid7gs] {
    padding: 0.9rem 0.75rem;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.92rem;
    color: var(--text-primary);
}

.dash-table tbody tr:hover[b-e5aqoid7gs] {
    background: #fafbfc;
}

.status-badge[b-e5aqoid7gs] {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-running[b-e5aqoid7gs] { background: var(--success-bg); color: var(--success); }
.status-initial-send[b-e5aqoid7gs] { background: #e0f2fe; color: #0369a1; }
.status-completed[b-e5aqoid7gs] { background: var(--info-bg); color: var(--info); }
.status-paused[b-e5aqoid7gs] { background: var(--warning-bg); color: var(--warning); }
.status-stopped[b-e5aqoid7gs] { background: var(--danger-bg); color: var(--danger); }
.status-draft[b-e5aqoid7gs] { background: var(--border-light); color: var(--text-secondary); }

.row-link[b-e5aqoid7gs] {
    color: var(--text-muted);
    font-size: 1.25rem;
    line-height: 1;
}

.dash-split[b-e5aqoid7gs] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.feed-list[b-e5aqoid7gs], .followup-list[b-e5aqoid7gs] {
    display: flex;
    flex-direction: column;
}

.feed-item[b-e5aqoid7gs] {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.85rem;
    align-items: start;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border-light);
    color: inherit;
    text-decoration: none;
    transition: background 0.12s;
}

.feed-item:last-child[b-e5aqoid7gs], .followup-item:last-child[b-e5aqoid7gs] {
    border-bottom: none;
}

.feed-item:hover[b-e5aqoid7gs], .followup-item:hover[b-e5aqoid7gs] {
    background: #fafbfc;
    margin: 0 -0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    border-radius: var(--radius);
}

.feed-avatar[b-e5aqoid7gs] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--brand-primary-light);
    color: var(--brand-primary);
    display: grid;
    place-items: center;
    font-size: 0.78rem;
    font-weight: 700;
}

.feed-top[b-e5aqoid7gs] {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
}

.feed-top strong[b-e5aqoid7gs] {
    font-size: 0.92rem;
}

.feed-top span[b-e5aqoid7gs] {
    font-size: 0.78rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.feed-company[b-e5aqoid7gs] {
    margin: 0.1rem 0;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.feed-preview[b-e5aqoid7gs] {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.feed-dot[b-e5aqoid7gs] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-primary);
    margin-top: 0.35rem;
}

.followup-item[b-e5aqoid7gs] {
    display: flex;
    gap: 0.85rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border-light);
    color: inherit;
    text-decoration: none;
}

.followup-date[b-e5aqoid7gs] {
    width: 48px;
    text-align: center;
    background: var(--border-light);
    border-radius: var(--radius);
    padding: 0.35rem 0.25rem;
    flex-shrink: 0;
}

.followup-month[b-e5aqoid7gs] {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
}

.followup-day[b-e5aqoid7gs] {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
}

.followup-body strong[b-e5aqoid7gs] {
    display: block;
    font-size: 0.92rem;
}

.followup-body p[b-e5aqoid7gs] {
    margin: 0.15rem 0;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.followup-time[b-e5aqoid7gs] {
    font-size: 0.78rem;
    color: var(--brand-primary);
    font-weight: 500;
}

.quick-actions[b-e5aqoid7gs] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.quick-card[b-e5aqoid7gs] {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.85rem;
    align-items: center;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1rem 1.15rem;
    color: inherit;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.15s, box-shadow 0.15s;
}

.quick-card:hover[b-e5aqoid7gs] {
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-md);
}

.quick-icon[b-e5aqoid7gs] {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--brand-primary-light);
    color: var(--brand-primary);
    display: grid;
    place-items: center;
}

.quick-card strong[b-e5aqoid7gs] {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.quick-card p[b-e5aqoid7gs] {
    margin: 0;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.quick-chevron[b-e5aqoid7gs] {
    color: var(--text-muted);
    font-size: 1.35rem;
    line-height: 1;
}

@media (max-width: 1200px) {
    .metric-grid[b-e5aqoid7gs] { grid-template-columns: repeat(2, 1fr); }
    .dash-split[b-e5aqoid7gs] { grid-template-columns: 1fr; }
    .quick-actions[b-e5aqoid7gs] { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .metric-grid[b-e5aqoid7gs] { grid-template-columns: 1fr; }
    .dash-header-actions[b-e5aqoid7gs] { flex-direction: column; align-items: stretch; }
    .dash-search[b-e5aqoid7gs] { max-width: none; }
}
/* /Components/Pages/LeadActivities.razor.rz.scp.css */
.activity-tabs[b-nl6c80if81] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.activity-tab[b-nl6c80if81] {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--bg-surface);
    color: var(--text-secondary);
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.activity-tab:hover[b-nl6c80if81] {
    border-color: #93c5fd;
    color: var(--text-primary);
}

.activity-tab.active[b-nl6c80if81] {
    border-color: var(--brand-primary);
    background: var(--brand-primary-light);
    color: var(--brand-primary);
}

.activity-tab-count[b-nl6c80if81] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.35rem;
    height: 1.35rem;
    padding: 0 0.35rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.06);
    font-size: 0.72rem;
}

.activity-tab.active .activity-tab-count[b-nl6c80if81] {
    background: rgba(0, 97, 255, 0.15);
}
/* /Components/Pages/Login.razor.rz.scp.css */
/* Styles live in wwwroot/auth.css */
/* /Components/Pages/Pipeline.razor.rz.scp.css */
.pipeline-page[b-ouaxaep31i] {
    padding-bottom: 1.5rem;
}

.pipeline-total-badge[b-ouaxaep31i] {
    font-size: 0.82rem;
    padding: 0.35rem 0.75rem;
}

.pipeline-toolbar[b-ouaxaep31i] {
    margin-bottom: 1.25rem;
}

.pipeline-hint[b-ouaxaep31i] {
    margin: 0.65rem 0 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.pipeline-loading[b-ouaxaep31i] {
    text-align: center;
    padding: 3rem 1rem;
}

.pipeline-loading-bar[b-ouaxaep31i] {
    width: 120px;
    height: 4px;
    margin: 0 auto 1rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-primary-light), var(--brand-primary), var(--brand-primary-light));
    background-size: 200% 100%;
    animation: pipeline-shimmer-b-ouaxaep31i 1.2s ease-in-out infinite;
}

@keyframes pipeline-shimmer-b-ouaxaep31i {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

.pipeline-board-scroll[b-ouaxaep31i] {
    overflow-x: auto;
    margin: 0 -0.25rem;
    padding: 0.25rem 0.25rem 0.75rem;
    -webkit-overflow-scrolling: touch;
}

.pipeline-board[b-ouaxaep31i] {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    min-height: 420px;
    min-width: min-content;
    padding-bottom: 0.5rem;
}

.pipeline-column[b-ouaxaep31i] {
    flex: 0 0 280px;
    width: 280px;
    max-height: calc(100vh - 280px);
    min-height: 360px;
    display: flex;
    flex-direction: column;
    background: #f3f4f6;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.pipeline-column.is-drag-over[b-ouaxaep31i] {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 2px rgba(20, 168, 0, 0.15);
    background: #eef4ff;
}

.pipeline-column-header[b-ouaxaep31i] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.85rem 0.9rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.65);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    position: sticky;
    top: 0;
    z-index: 1;
}

.pipeline-column-title[b-ouaxaep31i] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.25;
}

.pipeline-stage-dot[b-ouaxaep31i] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--text-muted);
}

.pipeline-count[b-ouaxaep31i] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5rem;
    height: 1.5rem;
    padding: 0 0.4rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-secondary);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.pipeline-cards[b-ouaxaep31i] {
    flex: 1;
    overflow-y: auto;
    padding: 0.65rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.pipeline-empty[b-ouaxaep31i] {
    padding: 1.25rem 0.75rem;
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.45);
}

.pipeline-card[b-ouaxaep31i] {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.75rem;
    cursor: grab;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.12s, opacity 0.12s;
}

.pipeline-card:hover[b-ouaxaep31i] {
    border-color: #86d275;
    box-shadow: var(--shadow);
    transform: translateY(-1px);
}

.pipeline-card.is-dragging[b-ouaxaep31i] {
    opacity: 0.45;
    cursor: grabbing;
    transform: rotate(1deg);
}

.pipeline-card-top[b-ouaxaep31i] {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
}

.pipeline-avatar[b-ouaxaep31i] {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--brand-primary-light);
    color: var(--brand-primary);
    font-size: 0.72rem;
    font-weight: 700;
    display: grid;
    place-items: center;
    letter-spacing: 0.02em;
}

.pipeline-card-main[b-ouaxaep31i] {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.pipeline-card-name[b-ouaxaep31i] {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    word-break: break-word;
}

.pipeline-card-email[b-ouaxaep31i],
.pipeline-card-company[b-ouaxaep31i] {
    font-size: 0.76rem;
    color: var(--text-muted);
    line-height: 1.35;
    word-break: break-all;
}

.pipeline-card-company[b-ouaxaep31i] {
    color: var(--text-secondary);
    font-weight: 500;
}

.pipeline-card-action[b-ouaxaep31i] {
    margin-top: 0.6rem;
    padding: 0.45rem 0.55rem;
    background: #f9fafb;
    border-radius: 8px;
    font-size: 0.76rem;
    color: var(--text-secondary);
    line-height: 1.4;
    border-left: 3px solid var(--brand-primary);
}

.pipeline-card-action-label[b-ouaxaep31i] {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    margin-bottom: 0.15rem;
}

.pipeline-card-meta[b-ouaxaep31i] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.55rem;
}

.pipeline-meta-chip[b-ouaxaep31i] {
    font-size: 0.68rem;
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
    background: var(--border-light);
    color: var(--text-secondary);
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pipeline-card-footer[b-ouaxaep31i] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 0.65rem;
    padding-top: 0.55rem;
    border-top: 1px solid var(--border-light);
}

.pipeline-move-select[b-ouaxaep31i] {
    flex: 1;
    max-width: 110px;
    margin-left: auto;
    padding: 0.28rem 0.35rem;
    font-size: 0.72rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-surface);
    color: var(--text-secondary);
    cursor: pointer;
}

.pipeline-move-select:focus[b-ouaxaep31i] {
    outline: none;
    border-color: var(--brand-primary);
}

/* Stage column accents */
.tone-new .pipeline-stage-dot[b-ouaxaep31i] { background: #14a800; }
.tone-new .pipeline-column-header[b-ouaxaep31i] { background: linear-gradient(180deg, #e4f3df 0%, rgba(255,255,255,0.7) 100%); }

.tone-sent .pipeline-stage-dot[b-ouaxaep31i] { background: #64748b; }
.tone-sent .pipeline-column-header[b-ouaxaep31i] { background: linear-gradient(180deg, #f1f5f9 0%, rgba(255,255,255,0.7) 100%); }

.tone-replied .pipeline-stage-dot[b-ouaxaep31i] { background: #0d9488; }
.tone-replied .pipeline-column-header[b-ouaxaep31i] { background: linear-gradient(180deg, #ecfdf5 0%, rgba(255,255,255,0.7) 100%); }

.tone-warm .pipeline-stage-dot[b-ouaxaep31i] { background: #f59e0b; }
.tone-warm .pipeline-column-header[b-ouaxaep31i] { background: linear-gradient(180deg, #fff7ed 0%, rgba(255,255,255,0.7) 100%); }

.tone-demo .pipeline-stage-dot[b-ouaxaep31i] { background: #3c8224; }
.tone-demo .pipeline-column-header[b-ouaxaep31i] { background: linear-gradient(180deg, #eef4ea 0%, rgba(255,255,255,0.7) 100%); }

.tone-proposal .pipeline-stage-dot[b-ouaxaep31i] { background: #2e7d32; }
.tone-proposal .pipeline-column-header[b-ouaxaep31i] { background: linear-gradient(180deg, #ecf6e8 0%, rgba(255,255,255,0.7) 100%); }

.tone-negotiation .pipeline-stage-dot[b-ouaxaep31i] { background: #d97706; }
.tone-negotiation .pipeline-column-header[b-ouaxaep31i] { background: linear-gradient(180deg, #fffbeb 0%, rgba(255,255,255,0.7) 100%); }

.tone-converted .pipeline-stage-dot[b-ouaxaep31i] { background: #059669; }
.tone-converted .pipeline-column-header[b-ouaxaep31i] { background: linear-gradient(180deg, #ecfdf5 0%, rgba(255,255,255,0.7) 100%); }

.tone-lost .pipeline-stage-dot[b-ouaxaep31i] { background: #dc2626; }
.tone-lost .pipeline-column-header[b-ouaxaep31i] { background: linear-gradient(180deg, #fef2f2 0%, rgba(255,255,255,0.7) 100%); }

@media (max-width: 960px) {
    .pipeline-column[b-ouaxaep31i] {
        flex: 0 0 260px;
        width: 260px;
        max-height: calc(100vh - 220px);
    }

    .pipeline-board[b-ouaxaep31i] {
        min-height: 340px;
    }
}

@media (max-width: 600px) {
    .pipeline-column[b-ouaxaep31i] {
        flex: 0 0 240px;
        width: 240px;
    }

    .pipeline-card-footer[b-ouaxaep31i] {
        flex-wrap: wrap;
    }

    .pipeline-move-select[b-ouaxaep31i] {
        max-width: none;
        width: 100%;
    }
}
/* /Components/Pages/UploadLeads.razor.rz.scp.css */
.upload-panel[b-pq5wir6s7d] {
    position: relative;
}

.import-loading[b-pq5wir6s7d] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    margin: 0 0 1.25rem;
    padding: 1.5rem 1rem;
    text-align: center;
    background: linear-gradient(180deg, var(--brand-primary-light) 0%, var(--bg-surface) 100%);
    border: 1px solid #b6e0aa;
    border-radius: var(--radius-lg);
}

.import-loading strong[b-pq5wir6s7d] {
    font-size: 1rem;
    color: var(--text-primary);
}

.import-loading span[b-pq5wir6s7d] {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.import-loading-spinner[b-pq5wir6s7d] {
    width: 36px;
    height: 36px;
    border: 3px solid #dce6d7;
    border-top-color: var(--brand-primary);
    border-radius: 50%;
    animation: importSpin-b-pq5wir6s7d 0.8s linear infinite;
}

@keyframes importSpin-b-pq5wir6s7d {
    to { transform: rotate(360deg); }
}

.preview-step[b-pq5wir6s7d] {
    position: relative;
}

.preview-step--saving .preview-table-wrap[b-pq5wir6s7d],
.preview-step--saving .preview-toolbar[b-pq5wir6s7d],
.preview-step--saving .preview-summary[b-pq5wir6s7d] {
    opacity: 0.45;
    pointer-events: none;
}

.import-saving-overlay[b-pq5wir6s7d] {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2rem 1rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #b6e0aa;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 30, 0, 0.08);
}

.import-saving-overlay strong[b-pq5wir6s7d] {
    font-size: 1.05rem;
    color: var(--text-primary);
}

.import-saving-overlay span[b-pq5wir6s7d] {
    font-size: 0.88rem;
    color: var(--text-secondary);
    max-width: 320px;
}

.btn--loading[b-pq5wir6s7d] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-width: 220px;
}

.btn-inline-spinner[b-pq5wir6s7d] {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: importSpin-b-pq5wir6s7d 0.75s linear infinite;
    flex-shrink: 0;
}

.upload-area--disabled[b-pq5wir6s7d] {
    opacity: 0.65;
    pointer-events: none;
}

.preview-toolbar[b-pq5wir6s7d] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 1rem 0 0.35rem;
}

.preview-toolbar-label[b-pq5wir6s7d] {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-right: 0.25rem;
}

.preview-filter[b-pq5wir6s7d] {
    padding: 0.38rem 0.75rem;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.preview-filter:hover:not(:disabled)[b-pq5wir6s7d] {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

.preview-filter.active[b-pq5wir6s7d] {
    background: var(--brand-primary-light);
    border-color: var(--brand-primary);
    color: var(--brand-primary-dark);
}

.preview-filter--error.active[b-pq5wir6s7d] {
    background: var(--danger-bg);
    border-color: #fecaca;
    color: var(--danger);
}

.sample-download[b-pq5wir6s7d] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1.25rem 0;
    padding: 1rem 1.15rem;
    background: var(--brand-primary-light);
    border: 1px solid #b6e0aa;
    border-radius: var(--radius-lg);
}

.sample-download-text[b-pq5wir6s7d] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.sample-download-text strong[b-pq5wir6s7d] {
    font-size: 0.95rem;
    color: var(--text-primary);
}

.sample-download-text span[b-pq5wir6s7d] {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.upload-area[b-pq5wir6s7d] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    padding: 1rem;
    border: 2px dashed var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-page);
}

.upload-label[b-pq5wir6s7d] {
    display: inline-flex;
    flex-direction: column;
    gap: 0.35rem;
    cursor: pointer;
}

.upload-label-title[b-pq5wir6s7d] {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.upload-filename[b-pq5wir6s7d] {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

.section-title[b-pq5wir6s7d] {
    margin: 1.25rem 0 0.35rem;
    font-size: 1.05rem;
}

.mapping-grid[b-pq5wir6s7d] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.mapping-row[b-pq5wir6s7d] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    align-items: center;
}

.mapping-source[b-pq5wir6s7d] {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.mapping-row select[b-pq5wir6s7d] {
    padding: 0.5rem 0.65rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font: inherit;
    font-size: 0.9rem;
}

.import-result[b-pq5wir6s7d] {
    margin-top: 1.25rem;
    padding: 1rem;
    background: var(--bg-page);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.import-result ul[b-pq5wir6s7d] {
    margin: 0.5rem 0 0;
    padding-left: 1.25rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.import-steps[b-pq5wir6s7d] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 1rem 0 1.25rem;
    padding: 0.75rem 1rem;
    background: var(--bg-page);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.import-step[b-pq5wir6s7d] {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
}

.import-step.active[b-pq5wir6s7d] {
    color: var(--brand-primary);
    font-weight: 700;
}

.import-step.done[b-pq5wir6s7d] {
    color: var(--success);
}

.import-step-sep[b-pq5wir6s7d] {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.step-actions[b-pq5wir6s7d] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

.mapping-warning[b-pq5wir6s7d] {
    margin-top: 0.75rem;
    color: var(--warning);
    font-size: 0.9rem;
}

.preview-summary[b-pq5wir6s7d] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1rem 0;
}

.preview-stat[b-pq5wir6s7d] {
    background: var(--bg-page);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    text-align: center;
}

.preview-stat-value[b-pq5wir6s7d] {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.preview-stat-label[b-pq5wir6s7d] {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.preview-stat-valid .preview-stat-value[b-pq5wir6s7d] { color: var(--success); }
.preview-stat-invalid .preview-stat-value[b-pq5wir6s7d] { color: var(--danger); }

.preview-table-wrap[b-pq5wir6s7d] {
    overflow: auto;
    max-height: min(70vh, 720px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-top: 0.75rem;
}

.preview-table[b-pq5wir6s7d] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.preview-table th[b-pq5wir6s7d] {
    position: sticky;
    top: 0;
    z-index: 1;
    text-align: left;
    padding: 0.65rem 0.75rem;
    background: var(--bg-page);
    border-bottom: 1px solid var(--border);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text-muted);
    white-space: nowrap;
}

.preview-table td[b-pq5wir6s7d] {
    padding: 0.6rem 0.75rem;
    border-bottom: 1px solid var(--border-light);
    vertical-align: top;
}

.preview-table tr.row-invalid[b-pq5wir6s7d] {
    background: #fffbfb;
}

.preview-table tr.row-valid:hover[b-pq5wir6s7d],
.preview-table tr.row-invalid:hover[b-pq5wir6s7d] {
    background: #fafbfc;
}

.status-ok[b-pq5wir6s7d] {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    background: var(--success-bg);
    color: var(--success);
    font-size: 0.75rem;
    font-weight: 600;
}

.status-skip[b-pq5wir6s7d] {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    background: var(--danger-bg);
    color: var(--danger);
    font-size: 0.75rem;
    font-weight: 600;
}

.preview-error[b-pq5wir6s7d] {
    color: var(--danger);
    font-size: 0.82rem;
    min-width: 160px;
    max-width: 280px;
    white-space: normal;
}

.import-result-success[b-pq5wir6s7d] {
    background: var(--success-bg);
    border-color: #bbf7d0;
}

.import-result-success h3[b-pq5wir6s7d] {
    margin: 0 0 0.5rem;
    color: var(--success);
}

@media (max-width: 640px) {
    .preview-summary[b-pq5wir6s7d] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .mapping-row[b-pq5wir6s7d] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Shared/RichTextEditor.razor.rz.scp.css */
.rte[b-98y2urlso8] {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-surface);
    overflow: hidden;
}

.rte-toolbar[b-98y2urlso8] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    padding: 0.45rem 0.55rem;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-page);
}

.rte-toolbar-btn[b-98y2urlso8] {
    min-width: 2rem;
    height: 2rem;
    padding: 0 0.55rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: var(--bg-surface);
    color: var(--text-primary);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    line-height: 1;
}

.rte-toolbar-btn:hover[b-98y2urlso8] {
    border-color: #86d275;
    background: var(--brand-primary-light);
}

.rte-editor[b-98y2urlso8] {
    min-height: 220px;
    max-height: 420px;
    overflow-y: auto;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text-primary);
    outline: none;
}

.rte-editor:empty[b-98y2urlso8]::before {
    content: attr(data-placeholder);
    color: var(--text-muted);
    pointer-events: none;
}

.rte-editor ul[b-98y2urlso8],
.rte-editor ol[b-98y2urlso8] {
    margin: 0.5rem 0;
    padding-left: 1.4rem;
}

.rte-editor p[b-98y2urlso8] {
    margin: 0 0 0.75rem;
}

.rte-editor a[b-98y2urlso8] {
    color: var(--brand-primary);
    text-decoration: underline;
}

.rte-compact .rte-editor[b-98y2urlso8] {
    min-height: 120px;
    max-height: 240px;
}

.rte-compact .rte-toolbar-btn[b-98y2urlso8] {
    min-width: 1.75rem;
    height: 1.75rem;
    font-size: 0.78rem;
}
