/* /Components/Layout/MainLayout.razor.rz.scp.css */
.ml-root[b-hvhad3ob86] {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(11, 92, 171, 0.08), transparent 24%),
        linear-gradient(180deg, #f7f9fc 0%, var(--jp-bg) 100%);
}

.ml-appbar[b-hvhad3ob86] {
    position: sticky;
    top: 0;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 72px;
    padding: 14px 24px;
    background: rgba(15, 23, 42, 0.94);
    color: #fff;
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
    backdrop-filter: blur(18px);
}

.ml-appbar-left[b-hvhad3ob86],
.ml-appbar-right[b-hvhad3ob86] {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ml-menu-btn[b-hvhad3ob86],
.ml-drawer-close[b-hvhad3ob86] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    background: rgba(148, 163, 184, 0.08);
    color: inherit;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.ml-menu-btn:hover[b-hvhad3ob86],
.ml-drawer-close:hover[b-hvhad3ob86] {
    background: rgba(148, 163, 184, 0.16);
    border-color: rgba(148, 163, 184, 0.35);
}

.ml-logo[b-hvhad3ob86] {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    padding: 6px;
    background-color: hsl(221.54deg 100% 91.16%);
}

.ml-brand-block[b-hvhad3ob86] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ml-brand-eyebrow[b-hvhad3ob86],
.ml-page-kicker[b-hvhad3ob86],
.ml-sidebar-kicker[b-hvhad3ob86],
.ml-sidebar-section-title[b-hvhad3ob86],
.ml-page-status-label[b-hvhad3ob86],
.ml-sidebar-note-label[b-hvhad3ob86] {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ml-brand-eyebrow[b-hvhad3ob86] {
    color: rgba(191, 219, 254, 0.72);
}

.ml-brand[b-hvhad3ob86] {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.ml-appbar-meta[b-hvhad3ob86] {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.ml-env-badge[b-hvhad3ob86] {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.14);
    color: #bfdbfe;
    font-size: 12px;
    font-weight: 600;
}

.ml-section-label[b-hvhad3ob86] {
    font-size: 13px;
    color: rgba(226, 232, 240, 0.84);
}

.ml-user[b-hvhad3ob86] {
    display: none;
    align-items: center;
    gap: 12px;
}

.ml-user-avatar[b-hvhad3ob86] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0b5cab, #0f7bdc);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.ml-user-copy[b-hvhad3ob86] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ml-user-name[b-hvhad3ob86] {
    font-size: 14px;
    font-weight: 600;
}

.ml-user-role[b-hvhad3ob86] {
    font-size: 12px;
    color: rgba(226, 232, 240, 0.72);
}

.ml-logout-btn[b-hvhad3ob86] {
    padding: 10px 16px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 12px;
    background: transparent;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.ml-logout-btn:hover[b-hvhad3ob86] {
    background: rgba(148, 163, 184, 0.12);
    border-color: rgba(191, 219, 254, 0.42);
}

.ml-shell[b-hvhad3ob86] {
    display: flex;
    align-items: flex-start;
    min-height: calc(100vh - 72px);
}

.ml-overlay[b-hvhad3ob86] {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(15, 23, 42, 0.48);
    backdrop-filter: blur(4px);
}

.ml-sidebar[b-hvhad3ob86] {
    position: fixed;
    top: 72px;
    left: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 264px;
    height: calc(100vh - 72px);
    padding: 14px 12px 12px;
    background: rgba(255, 255, 255, 0.92);
    border-right: 1px solid rgba(184, 198, 214, 0.8);
    box-shadow: var(--jp-shadow-md);
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    backdrop-filter: blur(16px);
    overflow-y: auto;
}

.ml-sidebar--open[b-hvhad3ob86] {
    transform: translateX(0);
}

.ml-sidebar-head[b-hvhad3ob86] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    padding: 0 6px 6px;
}

.ml-sidebar-title[b-hvhad3ob86] {
    display: block;
    margin-top: 2px;
    font-size: 17px;
    line-height: 1.05;
    font-weight: 700;
    color: var(--jp-text);
}

.ml-sidebar-section[b-hvhad3ob86] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(217, 226, 236, 0.65);
}

.ml-sidebar-section:last-of-type[b-hvhad3ob86] {
    border-bottom: none;
    padding-bottom: 0;
}

.ml-sidebar-section-title[b-hvhad3ob86] {
    padding: 4px 10px 2px;
    font-size: 10px;
    color: var(--jp-text-muted);
}

.ml-sidebar-foot[b-hvhad3ob86] {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px 14px 8px;
    border-top: 1px solid rgba(184, 198, 214, 0.7);
}

.ml-sidebar-note[b-hvhad3ob86] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ml-sidebar-note-value[b-hvhad3ob86] {
    font-size: 13px;
    color: var(--jp-text-muted);
}

.ml-sidebar-ausint[b-hvhad3ob86] {
    width: 92px;
    opacity: 0.6;
}

.ml-content[b-hvhad3ob86] {
    width: 100%;
    padding: 22px 18px 18px;
}

.ml-page-banner[b-hvhad3ob86] {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0 auto 18px;
    max-width: 1480px;
    padding: 18px 22px;
    border: 1px solid rgba(184, 198, 214, 0.84);
    border-radius: var(--jp-radius-lg);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.96)),
        var(--jp-surface);
    box-shadow: var(--jp-shadow-sm);
}

.ml-page-kicker[b-hvhad3ob86] {
    color: var(--jp-primary);
}

.ml-page-title[b-hvhad3ob86] {
    margin: 8px 0 0;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1;
    font-weight: 700;
    color: var(--jp-text);
}

.ml-page-status[b-hvhad3ob86] {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px 14px;
    border-radius: 16px;
    background: var(--jp-primary-soft);
}

.ml-page-status-value[b-hvhad3ob86] {
    color: var(--jp-primary-strong);
    font-size: 15px;
    font-weight: 700;
}

.ml-main[b-hvhad3ob86] {
    max-width: 1480px;
    margin: 0 auto;
}

.ml-footer[b-hvhad3ob86] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 1480px;
    margin: 24px auto 0;
    padding: 18px 12px 8px;
    color: var(--jp-text-muted);
    font-size: 12px;
}

.ml-footer-dot[b-hvhad3ob86] {
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: rgba(95, 107, 122, 0.45);
}

@media (min-width: 768px) {
    .ml-appbar[b-hvhad3ob86] {
        padding: 12px 24px;
    }

    .ml-appbar-meta[b-hvhad3ob86],
    .ml-user[b-hvhad3ob86] {
        display: flex;
    }

    .ml-content[b-hvhad3ob86] {
        padding: 24px 22px 20px;
    }

    .ml-page-banner[b-hvhad3ob86] {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (min-width: 1280px) {
    .ml-menu-btn[b-hvhad3ob86],
    .ml-drawer-close[b-hvhad3ob86] {
        display: none;
    }

    .ml-overlay[b-hvhad3ob86] {
        display: none;
    }

    .ml-sidebar[b-hvhad3ob86] {
        position: sticky;
        top: 72px;
        z-index: 70;
        transform: none;
        flex: 0 0 264px;
        height: calc(100vh - 72px);
        max-height: calc(100vh - 72px);
        box-shadow: none;
        overflow-y: auto;
    }

    .ml-content[b-hvhad3ob86] {
        width: calc(100% - 264px);
        padding: 24px 24px 20px;
    }
}

/* ── Nav badge counter ── */
.ml-nav-badge[b-hvhad3ob86] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1;
    margin-left: auto;
}

.ml-nav-badge--accent[b-hvhad3ob86] {
    background: #f59e0b;
    color: #1f2937;
}

.ml-nav-link--sub[b-hvhad3ob86] {
    padding-left: 2.25rem;
    font-size: 0.85rem;
    opacity: 0.85;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
/* Stili spostati in wwwroot/app.css (globali, non scoped)
   per garantire rendering corretto anche se il circuito Blazor
   si disconnette e gli asset scoped non vengono più serviti. */
/* /Components/Pages/AdminSyncDipendentiPage.razor.rz.scp.css */
.tw-badge[b-8l40hv0c4x] {
    display: inline-block;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.4;
    white-space: nowrap;
    margin-left: 0.5rem;
}

.tw-badge--success[b-8l40hv0c4x] {
    background: #d1fae5;
    color: #065f46;
}

.tw-badge--danger[b-8l40hv0c4x] {
    background: #fee2e2;
    color: #991b1b;
}
/* /Components/Pages/AnomaliePage.razor.rz.scp.css */
/* ── Badges ── */
.tw-badge[b-xzdkjhutaf] {
    display: inline-block;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.4;
    white-space: nowrap;
}

.tw-badge--success[b-xzdkjhutaf] { background: #d1fae5; color: #065f46; }
.tw-badge--danger[b-xzdkjhutaf]  { background: #fee2e2; color: #991b1b; }
.tw-badge--warning[b-xzdkjhutaf] { background: #fef3c7; color: #92400e; }
.tw-badge--muted[b-xzdkjhutaf]   { background: #e5e7eb; color: #6b7280; }

/* ── Icon buttons (deep for SfGrid templates) ── */
[b-xzdkjhutaf] .jp-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    color: inherit;
}

[b-xzdkjhutaf] .jp-icon-btn:hover:not(:disabled) {
    background: rgba(0, 0, 0, 0.06);
}

/* ── Page head actions ── */
.jp-page-head-right[b-xzdkjhutaf] {
    display: inline-flex;
    gap: 0.75rem;
    align-items: center;
}

/* ── Pager ── */
.tw-pager[b-xzdkjhutaf] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0 0;
    flex-wrap: wrap;
}

.tw-pager-size[b-xzdkjhutaf] {
    padding: 0.3rem 0.5rem;
    border: 1px solid var(--jp-border, #d1d5db);
    border-radius: 6px;
    font-size: 0.85rem;
}

/* ── Drawer overlay + panel ── */
.tw-drawer-overlay[b-xzdkjhutaf] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1000;
}

.tw-drawer[b-xzdkjhutaf] {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    max-width: 100vw;
    height: 100vh;
    background: var(--jp-surface, #fff);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: right 0.25s ease;
    overflow-y: auto;
}

.tw-drawer--open[b-xzdkjhutaf] {
    right: 0;
}

.tw-drawer-head[b-xzdkjhutaf] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--jp-border, #e5e7eb);
}

.tw-drawer-body[b-xzdkjhutaf] {
    padding: 1.25rem 1.5rem;
    flex: 1;
    overflow-y: auto;
}

.tw-drawer-actions[b-xzdkjhutaf] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--jp-border, #e5e7eb);
}

/* ── Detail grid ── */
.tw-detail-grid[b-xzdkjhutaf] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.tw-detail-item[b-xzdkjhutaf] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.tw-detail-item--full[b-xzdkjhutaf] {
    grid-column: 1 / -1;
}

.tw-detail-label[b-xzdkjhutaf] {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--jp-text-muted, #6b7280);
}

.tw-detail-value[b-xzdkjhutaf] {
    font-size: 0.95rem;
    color: var(--jp-text, #111827);
}

.tw-detail-section[b-xzdkjhutaf] {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--jp-border, #e5e7eb);
}

.tw-detail-section-title[b-xzdkjhutaf] {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--jp-text-muted, #6b7280);
    margin: 0 0 0.75rem;
}

@media (max-width: 720px) {
    .tw-drawer[b-xzdkjhutaf] {
        width: 100vw;
    }

    .tw-detail-grid[b-xzdkjhutaf] {
        grid-template-columns: 1fr;
    }

    .tw-pager[b-xzdkjhutaf] {
        flex-direction: column;
    }
}
/* /Components/Pages/ConfigurazionePage.razor.rz.scp.css */
/* E7: pagina Configurazione — pattern AnomaliePage/RichiesteHRPage */

.jp-input[b-5i74b9rc1z] {
    width: 100%;
    padding: 0.45rem 0.6rem;
    border: 1px solid var(--jp-border, #d1d5db);
    border-radius: 6px;
    font-size: 0.95rem;
    background: var(--jp-surface, #fff);
}

.jp-input:focus[b-5i74b9rc1z] {
    outline: 2px solid #3b82f6;
    outline-offset: -1px;
}

.tw-field--actions[b-5i74b9rc1z] {
    display: flex;
    align-items: flex-end;
}

.jp-readonly-value[b-5i74b9rc1z] {
    display: inline-block;
    padding: 0.45rem 0.6rem;
    background: rgba(243, 244, 246, 0.6);
    border: 1px solid var(--jp-border, #e5e7eb);
    border-radius: 6px;
    font-family: monospace;
    font-size: 0.95rem;
    color: var(--jp-text, #111827);
}

/* ── Omonimie ── */
.jp-omonimia-block[b-5i74b9rc1z] {
    border: 1px solid var(--jp-border, #e5e7eb);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    background: rgba(254, 226, 226, 0.15);
}

.jp-omonimia-head[b-5i74b9rc1z] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.jp-omonimia-list[b-5i74b9rc1z] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.jp-omonimia-item[b-5i74b9rc1z] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.6rem 0.75rem;
    background: var(--jp-surface, #fff);
    border: 1px solid var(--jp-border, #e5e7eb);
    border-radius: 6px;
    flex-wrap: wrap;
}

.jp-omonimia-meta[b-5i74b9rc1z] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.85rem;
    color: var(--jp-text, #111827);
}

.jp-omonimia-meta span[b-5i74b9rc1z] {
    color: var(--jp-text-muted, #6b7280);
}

.tw-btn--sm[b-5i74b9rc1z] {
    padding: 0.3rem 0.7rem;
    font-size: 0.8rem;
}

/* ── Diff modale ── */
.jp-diff-list[b-5i74b9rc1z] {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.jp-diff-list li[b-5i74b9rc1z] {
    padding: 0.5rem 0.75rem;
    background: rgba(243, 244, 246, 0.5);
    border-radius: 6px;
    font-family: monospace;
    font-size: 0.9rem;
}

/* ── Modale ── */
.jp-modal-header[b-5i74b9rc1z] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.jp-modal-footer[b-5i74b9rc1z] {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}

@media (max-width: 720px) {
    .jp-omonimia-item[b-5i74b9rc1z] {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* /Components/Pages/Dipendente/MieRichiesteHRPage.razor.rz.scp.css */
.tw-pager[b-ywpc7ne1kf] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-top: 1px solid #e5e7eb;
}

.tw-pager-size[b-ywpc7ne1kf] {
    margin-left: auto;
    padding: 0.25rem 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
}

.tw-btn--sm[b-ywpc7ne1kf] {
    padding: 0.3rem 0.7rem;
    font-size: 0.85rem;
}

/* Badges (mirror admin /richieste-hr). */
.tw-badge[b-ywpc7ne1kf] {
    display: inline-block;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.4;
    white-space: nowrap;
}

.tw-badge--success[b-ywpc7ne1kf] { background: #d1fae5; color: #065f46; }
.tw-badge--danger[b-ywpc7ne1kf]  { background: #fee2e2; color: #991b1b; }
.tw-badge--warning[b-ywpc7ne1kf] { background: #fef3c7; color: #92400e; }
.tw-badge--muted[b-ywpc7ne1kf]   { background: #e5e7eb; color: #6b7280; }

/* Drawer overlay + panel. */
.tw-drawer-overlay[b-ywpc7ne1kf] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1000;
}

.tw-drawer[b-ywpc7ne1kf] {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    max-width: 100vw;
    height: 100vh;
    background: var(--jp-surface, #fff);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: right 0.25s ease;
    overflow-y: auto;
}

.tw-drawer--open[b-ywpc7ne1kf] {
    right: 0;
}

.tw-drawer-head[b-ywpc7ne1kf] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--jp-border, #e5e7eb);
}

.tw-drawer-body[b-ywpc7ne1kf] {
    padding: 1.25rem 1.5rem;
    flex: 1;
    overflow-y: auto;
}

.tw-drawer-actions[b-ywpc7ne1kf] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--jp-border, #e5e7eb);
}

.tw-detail-grid[b-ywpc7ne1kf] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.tw-detail-item[b-ywpc7ne1kf] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.tw-detail-item--full[b-ywpc7ne1kf] {
    grid-column: 1 / -1;
}

.tw-detail-label[b-ywpc7ne1kf] {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--jp-text-muted, #6b7280);
}

.tw-detail-value[b-ywpc7ne1kf] {
    font-size: 0.95rem;
    color: var(--jp-text, #111827);
}

[b-ywpc7ne1kf] .jp-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    color: inherit;
}

[b-ywpc7ne1kf] .jp-icon-btn:hover:not(:disabled) {
    background: rgba(0, 0, 0, 0.06);
}

@media (max-width: 720px) {
    .tw-drawer[b-ywpc7ne1kf] { width: 100vw; }
    .tw-detail-grid[b-ywpc7ne1kf] { grid-template-columns: 1fr; }
    .tw-pager[b-ywpc7ne1kf] { flex-direction: column; }
}
/* /Components/Pages/Dipendente/MioCalendarioPage.razor.rz.scp.css */
/* Drawer-specific scoped styles. */

.mio-cal__drawer-section[b-j8f10zoy3v] {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.mio-cal__drawer-section:first-of-type[b-j8f10zoy3v] {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.mio-cal__drawer-h4[b-j8f10zoy3v] {
    margin: 0 0 0.6rem 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #374151;
}

.mio-cal__drawer-section-head[b-j8f10zoy3v] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.6rem;
}

.mio-cal__list[b-j8f10zoy3v] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mio-cal__list-item[b-j8f10zoy3v] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: #f9fafb;
    border-radius: 6px;
}

.tw-btn--sm[b-j8f10zoy3v] {
    padding: 0.3rem 0.7rem;
    font-size: 0.85rem;
}

/* Schedule chips: neutralize Syncfusion default purple appointment background. */
[b-j8f10zoy3v] .mio-cal__schedule .e-appointment {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 1px 2px !important;
}

[b-j8f10zoy3v] .mio-cal__schedule .e-appointment .e-appointment-details,
[b-j8f10zoy3v] .mio-cal__schedule .e-appointment .e-subject {
    background: transparent !important;
    color: inherit !important;
    padding: 0 !important;
}

.mio-cal__chip[b-j8f10zoy3v] {
    display: block;
    width: 100%;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
}

.mio-cal__chip--turno[b-j8f10zoy3v] {
    background: hsl(210, 70%, 55%);
}

.mio-cal__chip--mattina[b-j8f10zoy3v] {
    background: hsl(40, 80%, 55%);
    color: #3a2700;
}

.mio-cal__chip--pomeriggio[b-j8f10zoy3v] {
    background: hsl(15, 75%, 55%);
}

.mio-cal__chip--notte[b-j8f10zoy3v] {
    background: hsl(240, 45%, 35%);
}

.mio-cal__chip--riposo[b-j8f10zoy3v] {
    background: #6b7280;
}

.mio-cal__chip--evento[b-j8f10zoy3v] {
    background: #0891b2;
}

.mio-cal__chip--eccezione[b-j8f10zoy3v] {
    background: #d97706;
}

.mio-cal__chip--richiesta[b-j8f10zoy3v] {
    background: #d97706;
}

.mio-cal__chip--anomalia[b-j8f10zoy3v] {
    background: #dc2626;
}

[b-j8f10zoy3v] .mio-cal__schedule .mio-cal__cell--rosso,
[b-j8f10zoy3v] .mio-cal__schedule .mio-cal__cell--rosso .e-date-header {
    background-color: #fef2f2 !important;
    color: #b91c1c !important;
}

/* "Today" -> "Oggi" hardcoded. */
[b-j8f10zoy3v] .mio-cal__schedule .e-toolbar .e-today .e-tbar-btn-text {
    font-size: 0;
}

[b-j8f10zoy3v] .mio-cal__schedule .e-toolbar .e-today .e-tbar-btn-text::after {
    content: "Oggi";
    font-size: 0.875rem;
}

/* Kill drag-select visuals (selection still tracked internally but invisible). */
[b-j8f10zoy3v] .mio-cal__schedule .e-month-view .e-work-cells,
[b-j8f10zoy3v] .mio-cal__schedule .e-month-view .e-date-header-wrap {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

[b-j8f10zoy3v] .mio-cal__schedule .e-selected-cell,
[b-j8f10zoy3v] .mio-cal__schedule .e-month-view .e-work-cells.e-selected-cell {
    background-color: inherit !important;
    box-shadow: none !important;
}

/* Compact month cells. */
[b-j8f10zoy3v] .mio-cal__schedule .e-month-view .e-work-cells {
    height: auto !important;
    min-height: 70px;
}

[b-j8f10zoy3v] .mio-cal__schedule .e-month-view .e-date-header {
    padding: 2px 4px;
    font-size: 0.8rem;
}
/* /Components/Pages/DipendentiPage.razor.rz.scp.css */
/* Stili della DipendentiPage.
   Le vecchie regole .cal-* della griglia calendario sono state migrate in
   Components/Shared/CompactCalendarPreview.razor.css (nuova preview compatta). */

.tw-badge--success[b-omj9wxpeef] { background: #d1fae5; color: #065f46; }
.tw-badge--warning[b-omj9wxpeef] { background: #fef3c7; color: #92400e; }
.tw-badge--danger[b-omj9wxpeef]  { background: #fee2e2; color: #991b1b; }
.tw-badge--info[b-omj9wxpeef]    { background: #dbeafe; color: #1e40af; }

.jp-organico-toolbar[b-omj9wxpeef] {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin: 12px 0 8px;
    padding: 12px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}
.jp-organico-toolbar__filters[b-omj9wxpeef] {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-end;
}
.jp-organico-toolbar__bulk[b-omj9wxpeef] {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.jp-organico-toolbar .jp-field[b-omj9wxpeef] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.jp-organico-toolbar .jp-field label[b-omj9wxpeef] {
    font-size: 12px;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.jp-organico-meta[b-omj9wxpeef] {
    margin: 4px 4px 8px;
}

.jp-row-inactive td[b-omj9wxpeef] {
    opacity: 0.65;
}
.jp-row-inactive strong[b-omj9wxpeef] {
    color: #64748b;
}
/* /Components/Pages/Home.razor.rz.scp.css */
.hp-hero[b-2n2qn85wot],
.hp-metrics[b-2n2qn85wot],
.hp-workspace[b-2n2qn85wot] {
    margin-bottom: 18px;
}

.hp-hero[b-2n2qn85wot] {
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr;
}

.hp-hero-copy[b-2n2qn85wot],
.hp-status-card[b-2n2qn85wot],
.hp-metric[b-2n2qn85wot],
.hp-panel[b-2n2qn85wot] {
    border: 1px solid rgba(184, 198, 214, 0.84);
    border-radius: var(--jp-radius-md);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.hp-hero-copy[b-2n2qn85wot] {
    padding: 24px;
    background:
        radial-gradient(circle at top right, rgba(11, 92, 171, 0.12), transparent 26%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
}

.hp-kicker[b-2n2qn85wot],
.hp-status-label[b-2n2qn85wot],
.hp-metric-label[b-2n2qn85wot],
.hp-panel-kicker[b-2n2qn85wot] {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hp-kicker[b-2n2qn85wot],
.hp-panel-kicker[b-2n2qn85wot] {
    color: var(--jp-primary);
}

.hp-greeting[b-2n2qn85wot] {
    margin: 12px 0 10px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 0.96;
    font-weight: 700;
    color: var(--jp-text);
}

.hp-subtitle[b-2n2qn85wot] {
    max-width: 60ch;
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: var(--jp-text-muted);
}

.hp-aggiornata[b-2n2qn85wot] {
    margin-left: 6px;
    font-size: 12px;
    color: var(--jp-text-muted);
    opacity: 0.8;
}

.hp-hero-status[b-2n2qn85wot] {
    display: grid;
    gap: 18px;
}

.hp-status-card[b-2n2qn85wot] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
}

.hp-status-card--soft[b-2n2qn85wot] {
    background: linear-gradient(180deg, rgba(234, 242, 251, 0.9), rgba(255, 255, 255, 0.96));
}

.hp-status-value[b-2n2qn85wot],
.hp-panel-title[b-2n2qn85wot] {
    font-size: 20px;
    font-weight: 700;
    color: var(--jp-text);
}

.hp-status-note[b-2n2qn85wot],
.hp-metric-detail[b-2n2qn85wot],
.hp-list-meta[b-2n2qn85wot] {
    color: var(--jp-text-muted);
    font-size: 13px;
}

.hp-metrics[b-2n2qn85wot] {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.hp-metric[b-2n2qn85wot] {
    padding: 18px 18px 16px;
}

.hp-metric--primary[b-2n2qn85wot] {
    background:
        linear-gradient(135deg, rgba(11, 92, 171, 0.1), rgba(11, 92, 171, 0.03)),
        rgba(255, 255, 255, 0.98);
}

.hp-metric-head[b-2n2qn85wot] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.hp-metric-icon[b-2n2qn85wot] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--jp-primary-soft);
    color: var(--jp-primary);
    font-size: 18px;
}

.hp-metric-value[b-2n2qn85wot] {
    margin-bottom: 6px;
    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.08;
    font-weight: 700;
    color: var(--jp-text);
}

.hp-workspace[b-2n2qn85wot] {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}

.hp-panel[b-2n2qn85wot] {
    padding: 20px;
}

.hp-panel--wide[b-2n2qn85wot] {
    grid-column: span 1;
}

.hp-panel-head[b-2n2qn85wot] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.hp-panel-title[b-2n2qn85wot] {
    margin: 8px 0 0;
}

.hp-panel-badge[b-2n2qn85wot] {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--jp-primary-soft);
    color: var(--jp-primary-strong);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.hp-list[b-2n2qn85wot] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hp-list-item[b-2n2qn85wot] {
    display: flex;
    gap: 14px;
    padding: 14px;
    border-radius: 14px;
    background: var(--jp-surface-muted);
}

.hp-list-marker[b-2n2qn85wot] {
    width: 10px;
    border-radius: 999px;
    flex-shrink: 0;
}

.hp-list-marker--danger[b-2n2qn85wot] {
    background: var(--jp-danger);
}

.hp-list-marker--warning[b-2n2qn85wot] {
    background: var(--jp-warning);
}

.hp-list-marker--success[b-2n2qn85wot] {
    background: var(--jp-success);
}

.hp-list-copy[b-2n2qn85wot] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hp-list-title[b-2n2qn85wot] {
    font-size: 15px;
    font-weight: 700;
    color: var(--jp-text);
}

.hp-actions[b-2n2qn85wot] {
    display: grid;
    gap: 12px;
}

.hp-action-card[b-2n2qn85wot] {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid rgba(184, 198, 214, 0.84);
    border-radius: 14px;
    color: var(--jp-text);
    text-decoration: none;
    font-weight: 600;
    background: #fff;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hp-action-card .e-icons[b-2n2qn85wot] {
    color: var(--jp-primary);
}

.hp-action-card:hover[b-2n2qn85wot] {
    transform: translateY(-1px);
    border-color: rgba(11, 92, 171, 0.28);
    box-shadow: var(--jp-shadow-sm);
}

.hp-governance[b-2n2qn85wot] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hp-governance-row[b-2n2qn85wot] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(217, 226, 236, 0.9);
    color: var(--jp-text-muted);
}

.hp-governance-row:last-child[b-2n2qn85wot] {
    border-bottom: none;
    padding-bottom: 0;
}

.hp-governance-row strong[b-2n2qn85wot] {
    color: var(--jp-text);
    font-size: 18px;
}

@media (min-width: 900px) {
    .hp-hero[b-2n2qn85wot] {
        grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.8fr);
    }

    .hp-metrics[b-2n2qn85wot] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hp-workspace[b-2n2qn85wot] {
        grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(280px, 1fr));
    }

    .hp-panel--wide[b-2n2qn85wot] {
        grid-column: span 1;
    }
}

@media (min-width: 1280px) {
    .hp-metrics[b-2n2qn85wot] {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
/* /Components/Pages/Login/ForgotPasswordPage.razor.rz.scp.css */
.lp[b-qh1hafu18u] {
    min-height: 100vh;
    padding: 18px;
    background:
        radial-gradient(circle at top left, rgba(11, 92, 171, 0.16), transparent 24%),
        linear-gradient(180deg, #eef4fb 0%, #f7f9fc 100%);
}

.lp-panel[b-qh1hafu18u] {
    display: grid;
    grid-template-columns: 1fr;
    min-height: calc(100vh - 36px);
    border: 1px solid rgba(184, 198, 214, 0.84);
    border-radius: 32px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--jp-shadow-md);
}

.lp-brand[b-qh1hafu18u],
.lp-form-shell[b-qh1hafu18u] {
    padding: 28px;
}

.lp-brand[b-qh1hafu18u] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    background: #ffffff;
    color: var(--jp-text);
}

.lp-logo[b-qh1hafu18u] {
    width: min(420px, 70%);
    height: auto;
    object-fit: contain;
}

.lp-brand-title[b-qh1hafu18u] {
    margin: 0;
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1.05;
    font-weight: 700;
    color: var(--jp-text);
    text-align: center;
}

.lp-form-shell[b-qh1hafu18u] {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 70% 30%, rgba(11, 92, 171, 0.08), transparent 18%),
        linear-gradient(180deg, rgba(248, 250, 252, 0.92), rgba(255, 255, 255, 0.92));
}

.lp-card[b-qh1hafu18u] {
    width: 100%;
    max-width: 500px;
    padding: 30px;
    border: 1px solid rgba(184, 198, 214, 0.84);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--jp-shadow-sm);
    transform: translateY(-4px);
}

.lp-card-head[b-qh1hafu18u] {
    margin-bottom: 20px;
}

.lp-title[b-qh1hafu18u] {
    margin: 10px 0 8px;
    font-size: 28px;
    line-height: 1.05;
    color: var(--jp-text);
}

.lp-intro[b-qh1hafu18u] {
    margin: 0;
    color: var(--jp-text-muted);
    line-height: 1.55;
    font-size: 14px;
}

.lp-error[b-qh1hafu18u],
.lp-success[b-qh1hafu18u] {
    margin-bottom: 18px;
}

.lp-field[b-qh1hafu18u] {
    margin-bottom: 16px;
}

.lp-field-label[b-qh1hafu18u] {
    display: block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--jp-text-muted);
}

.lp-submit[b-qh1hafu18u] {
    margin-bottom: 18px;
}

.lp-foot-link[b-qh1hafu18u] {
    text-align: center;
    margin-top: 8px;
    font-size: 14px;
}

.lp-link[b-qh1hafu18u] {
    color: var(--jp-primary);
    text-decoration: none;
    font-weight: 600;
}

.lp-link:hover[b-qh1hafu18u] {
    text-decoration: underline;
}

@media (min-width: 1080px) {
    .lp-panel[b-qh1hafu18u] {
        grid-template-columns: minmax(0, 1.05fr) minmax(460px, 0.95fr);
    }

    .lp-brand[b-qh1hafu18u],
    .lp-form-shell[b-qh1hafu18u] {
        padding: 40px;
    }

    .lp-form-shell[b-qh1hafu18u] {
        justify-content: flex-start;
        padding-left: clamp(32px, 6vw, 88px);
    }
}
/* /Components/Pages/Login/LoginPage.razor.rz.scp.css */
.lp[b-1qurfozgsg] {
    min-height: 100vh;
    padding: 18px;
    background:
        radial-gradient(circle at top left, rgba(11, 92, 171, 0.16), transparent 24%),
        linear-gradient(180deg, #eef4fb 0%, #f7f9fc 100%);
}

.lp-panel[b-1qurfozgsg] {
    display: grid;
    grid-template-columns: 1fr;
    min-height: calc(100vh - 36px);
    border: 1px solid rgba(184, 198, 214, 0.84);
    border-radius: 32px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--jp-shadow-md);
}

.lp-brand[b-1qurfozgsg],
.lp-form-shell[b-1qurfozgsg] {
    padding: 28px;
}

.lp-brand[b-1qurfozgsg] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    background: #ffffff;
    color: var(--jp-text);
}

.lp-logo[b-1qurfozgsg] {
    width: min(420px, 70%);
    height: auto;
    object-fit: contain;
}

.lp-brand-title[b-1qurfozgsg] {
    margin: 0;
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1.05;
    font-weight: 700;
    color: var(--jp-text);
    text-align: center;
}

.lp-kicker[b-1qurfozgsg],
.lp-card-kicker[b-1qurfozgsg],
.lp-field-label[b-1qurfozgsg] {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.lp-kicker[b-1qurfozgsg] {
    color: rgba(191, 219, 254, 0.86);
}

.lp-brand-title[b-1qurfozgsg] {
    margin: 8px 0 0;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 0.96;
}

.lp-brand-copy[b-1qurfozgsg] {
    max-width: 34rem;
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(226, 232, 240, 0.88);
}

.lp-highlights[b-1qurfozgsg] {
    display: grid;
    gap: 12px;
}

.lp-highlight[b-1qurfozgsg] {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding: 16px;
    border: 1px solid rgba(191, 219, 254, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
}

.lp-highlight .e-icons[b-1qurfozgsg] {
    font-size: 18px;
    color: #bfdbfe;
    margin-top: 2px;
}

.lp-highlight strong[b-1qurfozgsg],
.lp-highlight span[b-1qurfozgsg] {
    display: block;
}

.lp-highlight strong[b-1qurfozgsg] {
    margin-bottom: 4px;
    font-size: 15px;
}

.lp-highlight span:last-child[b-1qurfozgsg] {
    color: rgba(226, 232, 240, 0.82);
    font-size: 13px;
    line-height: 1.6;
}

.lp-form-shell[b-1qurfozgsg] {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 70% 30%, rgba(11, 92, 171, 0.08), transparent 18%),
        radial-gradient(circle at 82% 72%, rgba(11, 92, 171, 0.06), transparent 16%),
        linear-gradient(180deg, rgba(248, 250, 252, 0.92), rgba(255, 255, 255, 0.92));
}

.lp-card[b-1qurfozgsg] {
    width: 100%;
    max-width: 500px;
    padding: 30px;
    border: 1px solid rgba(184, 198, 214, 0.84);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--jp-shadow-sm);
    transform: translateY(-4px);
}

.lp-card-head[b-1qurfozgsg] {
    margin-bottom: 20px;
}

.lp-card-kicker[b-1qurfozgsg] {
    color: var(--jp-primary);
}

.lp-title[b-1qurfozgsg] {
    margin: 10px 0 8px;
    font-size: 28px;
    line-height: 1.05;
    color: var(--jp-text);
}

.lp-intro[b-1qurfozgsg] {
    margin: 0;
    color: var(--jp-text-muted);
    line-height: 1.55;
    font-size: 14px;
}

.lp-error[b-1qurfozgsg] {
    margin-bottom: 18px;
}

.lp-field[b-1qurfozgsg] {
    margin-bottom: 16px;
}

.lp-field-label[b-1qurfozgsg] {
    display: block;
    margin-bottom: 10px;
    color: var(--jp-text-muted);
}

.lp-options[b-1qurfozgsg] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 8px 0 22px;
}

.lp-options-note[b-1qurfozgsg],
.lp-foot-text[b-1qurfozgsg] {
    color: var(--jp-text-muted);
    font-size: 13px;
}

.lp-submit[b-1qurfozgsg] {
    margin-bottom: 18px;
}

.lp-foot-link[b-1qurfozgsg] {
    text-align: center;
    margin-top: 8px;
    font-size: 14px;
}

.lp-link[b-1qurfozgsg] {
    color: var(--jp-primary);
    text-decoration: none;
    font-weight: 600;
}

.lp-link:hover[b-1qurfozgsg] {
    text-decoration: underline;
}

.lp-foot[b-1qurfozgsg] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(217, 226, 236, 0.92);
}

.lp-ausint[b-1qurfozgsg] {
    width: 88px;
    opacity: 0.6;
}

@media (min-width: 1080px) {
    .lp-panel[b-1qurfozgsg] {
        grid-template-columns: minmax(0, 1.05fr) minmax(460px, 0.95fr);
    }

    .lp-brand[b-1qurfozgsg],
    .lp-form-shell[b-1qurfozgsg] {
        padding: 40px;
    }

    .lp-form-shell[b-1qurfozgsg] {
        justify-content: flex-start;
        padding-left: clamp(32px, 6vw, 88px);
    }
}
/* /Components/Pages/Login/ResetPasswordPage.razor.rz.scp.css */
.lp[b-75otdn03gp] {
    min-height: 100vh;
    padding: 18px;
    background:
        radial-gradient(circle at top left, rgba(11, 92, 171, 0.16), transparent 24%),
        linear-gradient(180deg, #eef4fb 0%, #f7f9fc 100%);
}

.lp-panel[b-75otdn03gp] {
    display: grid;
    grid-template-columns: 1fr;
    min-height: calc(100vh - 36px);
    border: 1px solid rgba(184, 198, 214, 0.84);
    border-radius: 32px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--jp-shadow-md);
}

.lp-brand[b-75otdn03gp],
.lp-form-shell[b-75otdn03gp] {
    padding: 28px;
}

.lp-brand[b-75otdn03gp] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    background: #ffffff;
    color: var(--jp-text);
}

.lp-logo[b-75otdn03gp] {
    width: min(420px, 70%);
    height: auto;
    object-fit: contain;
}

.lp-brand-title[b-75otdn03gp] {
    margin: 0;
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1.05;
    font-weight: 700;
    color: var(--jp-text);
    text-align: center;
}

.lp-form-shell[b-75otdn03gp] {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 70% 30%, rgba(11, 92, 171, 0.08), transparent 18%),
        linear-gradient(180deg, rgba(248, 250, 252, 0.92), rgba(255, 255, 255, 0.92));
}

.lp-card[b-75otdn03gp] {
    width: 100%;
    max-width: 500px;
    padding: 30px;
    border: 1px solid rgba(184, 198, 214, 0.84);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--jp-shadow-sm);
    transform: translateY(-4px);
}

.lp-card-head[b-75otdn03gp] {
    margin-bottom: 20px;
}

.lp-title[b-75otdn03gp] {
    margin: 10px 0 8px;
    font-size: 28px;
    line-height: 1.05;
    color: var(--jp-text);
}

.lp-intro[b-75otdn03gp] {
    margin: 0;
    color: var(--jp-text-muted);
    line-height: 1.55;
    font-size: 14px;
}

.lp-error[b-75otdn03gp],
.lp-success[b-75otdn03gp] {
    margin-bottom: 18px;
}

.lp-field[b-75otdn03gp] {
    margin-bottom: 16px;
}

.lp-field-label[b-75otdn03gp] {
    display: block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--jp-text-muted);
}

.lp-submit[b-75otdn03gp] {
    margin-bottom: 18px;
}

.lp-foot-link[b-75otdn03gp] {
    text-align: center;
    margin-top: 8px;
    font-size: 14px;
}

.lp-link[b-75otdn03gp] {
    color: var(--jp-primary);
    text-decoration: none;
    font-weight: 600;
}

.lp-link:hover[b-75otdn03gp] {
    text-decoration: underline;
}

@media (min-width: 1080px) {
    .lp-panel[b-75otdn03gp] {
        grid-template-columns: minmax(0, 1.05fr) minmax(460px, 0.95fr);
    }

    .lp-brand[b-75otdn03gp],
    .lp-form-shell[b-75otdn03gp] {
        padding: 40px;
    }

    .lp-form-shell[b-75otdn03gp] {
        justify-content: flex-start;
        padding-left: clamp(32px, 6vw, 88px);
    }
}
/* /Components/Pages/PianificazioneSettimanalePage.razor.rz.scp.css */
.jp-week-toolbar[b-j38l98dfaz] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 1rem;
}

.jp-week-nav[b-j38l98dfaz] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.jp-week-label[b-j38l98dfaz] {
    font-weight: 600;
    margin-left: 0.75rem;
    color: #111827;
}

.jp-week-filters[b-j38l98dfaz] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.jp-week-tag-field[b-j38l98dfaz] {
    min-width: 280px;
}

.jp-week-fasce-field[b-j38l98dfaz] {
    min-width: 280px;
}

.jp-week-fasce-row[b-j38l98dfaz] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.jp-checkbox-inline[b-j38l98dfaz] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    user-select: none;
}

.jp-week-grid-wrapper[b-j38l98dfaz] {
    overflow-x: auto;
}

.jp-week-grid[b-j38l98dfaz] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.jp-week-grid th[b-j38l98dfaz],
.jp-week-grid td[b-j38l98dfaz] {
    border: 1px solid #e5e7eb;
    padding: 0.5rem;
    vertical-align: top;
}

.jp-week-fascia-head[b-j38l98dfaz] {
    width: 140px;
    background: #f3f4f6;
}

.jp-week-day-head[b-j38l98dfaz] {
    background: #f3f4f6;
    font-weight: 600;
    text-align: center;
    color: #374151;
    min-width: 110px;
}

.jp-week-day-head--today[b-j38l98dfaz] {
    background: #dbeafe;
    color: #1d4ed8;
}

.jp-week-fascia[b-j38l98dfaz] {
    background: #f9fafb;
    text-align: left;
    width: 140px;
    position: sticky;
    left: 0;
    z-index: 1;
}

.jp-week-fascia-name[b-j38l98dfaz] {
    display: block;
    font-weight: 600;
    color: #111827;
}

.jp-week-fascia-orari[b-j38l98dfaz] {
    display: block;
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.15rem;
}

.jp-week-cell[b-j38l98dfaz] {
    min-width: 110px;
    background: #ffffff;
}

.jp-week-chip[b-j38l98dfaz] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin: 0.15rem 0.2rem 0.15rem 0;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #111827;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.15s;
}

.jp-week-chip:hover:not(:disabled)[b-j38l98dfaz] {
    background: #eef2ff;
    border-color: #6366f1;
}

.jp-week-chip:disabled[b-j38l98dfaz],
.jp-week-chip--locked[b-j38l98dfaz] {
    background: #f3f4f6;
    color: #9ca3af;
    border-color: #e5e7eb;
    cursor: not-allowed;
}

.jp-week-chip--excezione[b-j38l98dfaz] {
    border-color: #f59e0b;
    background: #fffbeb;
}

.jp-week-chip--manuale[b-j38l98dfaz] {
    border-color: #10b981;
    background: #ecfdf5;
}

.jp-week-cell-badge[b-j38l98dfaz] {
    font-size: 0.85rem;
    line-height: 1;
}

/* Drag & drop spostamento turno: affordance sui chip trascinabili ed evidenziazione
   drop-target puramente CSS (nessun handler server per-cella, per non saturare il
   circuito Blazor Server su griglie da molte celle). */
.jp-week-chip[draggable="true"][b-j38l98dfaz] {
    cursor: grab;
}

.jp-week-chip[draggable="true"]:active[b-j38l98dfaz] {
    cursor: grabbing;
}

.jp-week-grid--dragging .jp-week-cell:hover[b-j38l98dfaz] {
    outline: 2px dashed #2563eb;
    outline-offset: -2px;
    background-color: rgba(37, 99, 235, 0.08);
}
/* /Components/Pages/RichiesteHRPage.razor.rz.scp.css */
/* ── Badges ── */
.tw-badge[b-7qgbnh4cfv] {
    display: inline-block;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.4;
    white-space: nowrap;
}

.tw-badge--success[b-7qgbnh4cfv] { background: #d1fae5; color: #065f46; }
.tw-badge--danger[b-7qgbnh4cfv]  { background: #fee2e2; color: #991b1b; }
.tw-badge--warning[b-7qgbnh4cfv] { background: #fef3c7; color: #92400e; }
.tw-badge--muted[b-7qgbnh4cfv]   { background: #e5e7eb; color: #6b7280; }

/* ── Icon buttons (deep for SfGrid templates) ── */
[b-7qgbnh4cfv] .jp-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    color: inherit;
}

[b-7qgbnh4cfv] .jp-icon-btn:hover:not(:disabled) {
    background: rgba(0, 0, 0, 0.06);
}

/* ── Page head actions ── */
.jp-page-head-right[b-7qgbnh4cfv] {
    display: inline-flex;
    gap: 0.75rem;
    align-items: center;
}

/* ── Pager ── */
.tw-pager[b-7qgbnh4cfv] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0 0;
    flex-wrap: wrap;
}

.tw-pager-size[b-7qgbnh4cfv] {
    padding: 0.3rem 0.5rem;
    border: 1px solid var(--jp-border, #d1d5db);
    border-radius: 6px;
    font-size: 0.85rem;
}

/* ── Drawer overlay + panel ── */
.tw-drawer-overlay[b-7qgbnh4cfv] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1000;
}

.tw-drawer[b-7qgbnh4cfv] {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    max-width: 100vw;
    height: 100vh;
    background: var(--jp-surface, #fff);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: right 0.25s ease;
    overflow-y: auto;
}

.tw-drawer--open[b-7qgbnh4cfv] {
    right: 0;
}

.tw-drawer-head[b-7qgbnh4cfv] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--jp-border, #e5e7eb);
}

.tw-drawer-body[b-7qgbnh4cfv] {
    padding: 1.25rem 1.5rem;
    flex: 1;
    overflow-y: auto;
}

.tw-drawer-actions[b-7qgbnh4cfv] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--jp-border, #e5e7eb);
}

/* ── Detail grid ── */
.tw-detail-grid[b-7qgbnh4cfv] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.tw-detail-item[b-7qgbnh4cfv] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.tw-detail-item--full[b-7qgbnh4cfv] {
    grid-column: 1 / -1;
}

.tw-detail-label[b-7qgbnh4cfv] {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--jp-text-muted, #6b7280);
}

.tw-detail-value[b-7qgbnh4cfv] {
    font-size: 0.95rem;
    color: var(--jp-text, #111827);
}

@media (max-width: 720px) {
    .tw-drawer[b-7qgbnh4cfv] {
        width: 100vw;
    }

    .tw-detail-grid[b-7qgbnh4cfv] {
        grid-template-columns: 1fr;
    }

    .tw-pager[b-7qgbnh4cfv] {
        flex-direction: column;
    }
}
/* /Components/Pages/ScadenzeCorsiPage.razor.rz.scp.css */
/* Month view compatto: celle ed eventi piccoli così le 6 settimane stanno nel container
   (height = viewport) senza scroll interno. ::deep raggiunge il DOM di SfSchedule (figlio). */

[b-6rax0vzh46] .e-schedule .e-month-view .e-date-header {
    font-size: 0.7rem;
    padding: 0 2px;
}

/* Riga intestazione giorni della settimana più bassa */
[b-6rax0vzh46] .e-schedule .e-month-view .e-date-header-wrap table td {
    height: 22px;
    padding: 1px 0;
}

/* Evento/appuntamento più piccolo. Sfondo trasparente: il colore lo dà il chip
   del Template (ChipStyle). Senza questo, lo sfondo viola di default dell'appointment
   resta visibile a destra dove il chip non arriva a coprire. */
[b-6rax0vzh46] .e-schedule .e-month-view .e-appointment {
    height: 16px;
    margin: 1px 2px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

[b-6rax0vzh46] .e-schedule .e-month-view .e-appointment .e-appointment-details {
    padding: 0;
}

/* Indicatore "+N altri" compatto */
[b-6rax0vzh46] .e-schedule .e-month-view .e-more-indicator {
    font-size: 0.68rem;
    height: 14px;
    line-height: 14px;
}
/* /Components/Pages/TimbraturePage.razor.rz.scp.css */
/* Badges (reusable across page scope) */
.tw-badge[b-bw539w53mb] {
    display: inline-block;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.4;
    white-space: nowrap;
}

.tw-badge--success[b-bw539w53mb] { background: #d1fae5; color: #065f46; }
.tw-badge--danger[b-bw539w53mb]  { background: #fee2e2; color: #991b1b; }
.tw-badge--warning[b-bw539w53mb] { background: #fef3c7; color: #92400e; }
.tw-badge--info[b-bw539w53mb]    { background: #dbeafe; color: #1e3a8a; }
.tw-badge--neutral[b-bw539w53mb] { background: #e5e7eb; color: #374151; }

[b-bw539w53mb] .tw-row--deleted {
    text-decoration: line-through;
    opacity: 0.6;
}

.jp-page-head-right[b-bw539w53mb] {
    display: inline-flex;
    gap: 0.75rem;
    align-items: center;
}

.jp-timesheet-head[b-bw539w53mb] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
}

.jp-timesheet-summary[b-bw539w53mb] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;
}

.jp-all-list[b-bw539w53mb] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.jp-all-group[b-bw539w53mb] {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.jp-all-group-head[b-bw539w53mb] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.jp-all-group-title[b-bw539w53mb] {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
}

[b-bw539w53mb] .jp-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    color: inherit;
}

[b-bw539w53mb] .jp-icon-btn:hover:not(:disabled) {
    background: rgba(0, 0, 0, 0.06);
}

[b-bw539w53mb] .jp-icon-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

[b-bw539w53mb] .jp-icon-btn--danger:hover:not(:disabled) {
    background: #fee2e2;
    color: #991b1b;
}

[b-bw539w53mb] .jp-day-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
    justify-content: flex-end;
    white-space: nowrap;
}

[b-bw539w53mb] .jp-day-label {
    min-width: 220px;
    flex: 0 1 auto;
}

[b-bw539w53mb] .jp-day-picker {
    position: relative;
    display: inline-flex;
}

[b-bw539w53mb] .jp-day-trigger.e-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    background: transparent;
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    text-transform: capitalize;
    box-shadow: none;
}

[b-bw539w53mb] .jp-day-trigger.e-btn:hover,
[b-bw539w53mb] .jp-day-trigger.e-btn:focus,
[b-bw539w53mb] .jp-day-trigger.e-btn:active {
    background: transparent;
    border-color: #d1d5db;
    color: #111827;
    box-shadow: none;
}

[b-bw539w53mb] .jp-day-trigger .e-icons {
    font-size: 1rem;
    color: #6b7280;
}

[b-bw539w53mb] .jp-day-popup {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1200;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
    padding: 4px;
}

[b-bw539w53mb] .jp-day-popup-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1199;
    background: transparent;
}

[b-bw539w53mb] .jp-day-today-disabled {
    opacity: 0.55;
}

[b-bw539w53mb] .jp-day-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.25rem 0 0.9rem;
}

[b-bw539w53mb] .jp-day-body {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

[b-bw539w53mb] .jp-ts-day {
    font-weight: 700;
    color: #111827;
    text-transform: capitalize;
}

[b-bw539w53mb] .jp-ts-dow {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: #6b7280;
}

[b-bw539w53mb] .jp-ts-worked {
    font-weight: 600;
    color: #111827;
}

[b-bw539w53mb] .jp-ts-planned {
    color: #6b7280;
}

[b-bw539w53mb] .jp-ts-sep {
    color: #9ca3af;
}

[b-bw539w53mb] .jp-ts-riposo {
    margin-left: 0.35rem;
}

[b-bw539w53mb] .jp-ts-turno {
    font-size: 0.85rem;
    color: #6b7280;
    font-style: italic;
}

[b-bw539w53mb] .jp-ts-inner {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

[b-bw539w53mb] .jp-ts-inner thead th {
    text-align: left;
    padding: 0.45rem 0.7rem;
    background: #f3f4f6;
    border-bottom: 1px solid #e5e7eb;
    font-weight: 600;
    color: #374151;
}

[b-bw539w53mb] .jp-ts-inner tbody td {
    padding: 0.45rem 0.7rem;
    border-bottom: 1px solid #f3f4f6;
    font-variant-numeric: tabular-nums;
}

[b-bw539w53mb] .jp-ts-inner tbody tr:last-child td {
    border-bottom: none;
}

[b-bw539w53mb] .jp-ts-inner-actions {
    text-align: right;
    white-space: nowrap;
}

[b-bw539w53mb] .jp-ts-sess--orfana td {
    background: #fffbeb;
}

[b-bw539w53mb] .jp-ts-verso {
    margin-left: 0.4rem;
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
}

[b-bw539w53mb] .jp-ts-detail-footer {
    text-align: right;
}

[b-bw539w53mb] .jp-ts-empty {
    padding: 0.8rem 0;
    font-style: italic;
    color: #6b7280;
}

@media (max-width: 960px) {
    .jp-timesheet-head[b-bw539w53mb] {
        flex-direction: column;
        align-items: stretch;
    }

    [b-bw539w53mb] .jp-day-nav {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    [b-bw539w53mb] .jp-day-nav {
        flex-wrap: wrap;
        white-space: normal;
        justify-content: flex-start;
    }
}

[b-bw539w53mb] .jp-grid-wrap {
    margin-top: 1rem;
}

[b-bw539w53mb] .jp-grid-wrap .e-grid .e-headercell {
    font-weight: 700;
}
/* /Components/Shared/AzioniCellaDialog.razor.rz.scp.css */
.jp-azioni-cella-tabs[b-2sw7qf4gfm] {
    margin-top: 12px;
}

.jp-tab-section[b-2sw7qf4gfm] {
    padding: 12px 4px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.jp-tab-error[b-2sw7qf4gfm] {
    margin-top: 12px;
}

.jp-error-text[b-2sw7qf4gfm] {
    color: #c0392b;
    margin-top: 4px;
}
/* /Components/Shared/CompactCalendarPreview.razor.rz.scp.css */
.ccal-root[b-mg5t97cfm6] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 260px;
}

.ccal-nav[b-mg5t97cfm6] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
}

.ccal-label[b-mg5t97cfm6] {
    flex: 1;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--jp-text, #1f2937);
}

.ccal-weekdays[b-mg5t97cfm6] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    text-align: center;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--jp-text-muted, #6b7280);
}

.ccal-weekdays span[b-mg5t97cfm6] {
    padding: 2px 0;
}

.ccal-grid[b-mg5t97cfm6] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.ccal-cell[b-mg5t97cfm6] {
    position: relative;
    aspect-ratio: 1;
    min-height: 26px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    cursor: default;
    transition: transform 0.08s ease-in-out;
}

.ccal-cell:hover[b-mg5t97cfm6] {
    transform: scale(1.08);
}

.ccal-cell--empty[b-mg5t97cfm6] {
    background: transparent;
    cursor: default;
}

.ccal-cell--empty:hover[b-mg5t97cfm6] {
    transform: none;
}

.ccal-cell--nessuna[b-mg5t97cfm6] {
    background: rgba(217, 226, 236, 0.25);
    color: var(--jp-text-muted, #6b7280);
}

.ccal-cell--riposo[b-mg5t97cfm6] {
    background: rgba(184, 198, 214, 0.35);
    color: var(--jp-text-muted, #6b7280);
}

.ccal-cell--lavoro[b-mg5t97cfm6] {
    background: rgba(11, 92, 171, 0.12);
    color: var(--jp-primary-strong, #0b5cab);
}

.ccal-cell--sospeso[b-mg5t97cfm6] {
    background: rgba(183, 110, 0, 0.15);
    color: var(--jp-warning, #b76e00);
}

.ccal-day[b-mg5t97cfm6] {
    line-height: 1;
}

.ccal-dot[b-mg5t97cfm6] {
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.75;
}

.ccal-legend[b-mg5t97cfm6] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 2px;
    font-size: 10px;
    color: var(--jp-text-muted, #6b7280);
}

.ccal-legend-item[b-mg5t97cfm6] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.ccal-dot-inline[b-mg5t97cfm6] {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.ccal-dot-inline--lavoro[b-mg5t97cfm6] { background: rgba(11, 92, 171, 0.55); }
.ccal-dot-inline--riposo[b-mg5t97cfm6] { background: rgba(184, 198, 214, 0.9); }
.ccal-dot-inline--sospeso[b-mg5t97cfm6] { background: rgba(183, 110, 0, 0.6); }
.ccal-dot-inline--nessuna[b-mg5t97cfm6] { background: rgba(217, 226, 236, 0.8); }
/* /Components/Shared/GiustificazioneBadge.razor.rz.scp.css */
.gb-empty[b-2tto0yu3c7] {
    color: #9ca3af;
    font-size: 0.85rem;
}

.gb-strike[b-2tto0yu3c7] {
    text-decoration: line-through;
}
/* /Components/Shared/HelpDialog.razor.rz.scp.css */
.jp-help-content[b-sjg48l20nl] {
    color: var(--jp-text, #172033);
    font-size: 0.92rem;
    line-height: 1.55;
}

.jp-help-content[b-sjg48l20nl]  p {
    margin: 0 0 0.6rem;
}

.jp-help-content[b-sjg48l20nl]  ul {
    margin: 0 0 0.6rem;
    padding-left: 1.1rem;
}

.jp-help-content[b-sjg48l20nl]  li {
    margin-bottom: 0.3rem;
}

.jp-help-content[b-sjg48l20nl]  p:last-child,
.jp-help-content[b-sjg48l20nl]  ul:last-child {
    margin-bottom: 0;
}

.jp-help-content[b-sjg48l20nl]  strong {
    color: var(--jp-text, #172033);
}

.jp-help-content[b-sjg48l20nl]  .jp-help-note {
    margin-top: 0.7rem;
    padding: 0.55rem 0.7rem;
    font-size: 0.85rem;
    color: var(--jp-warning, #b76e00);
    background: #fff7ec;
    border-left: 3px solid var(--jp-warning, #b76e00);
    border-radius: 6px;
}
/* /Components/Shared/HelpIcon.razor.rz.scp.css */
.jp-help-icon[b-ef123879nu] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-left: 6px;
    padding: 0;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    color: var(--jp-text-muted, #5f6b7a);
    background: var(--jp-surface-muted, #f8fafc);
    border: 1px solid var(--jp-border, #d9e2ec);
    border-radius: 50%;
    cursor: pointer;
    vertical-align: middle;
    transition: background-color .12s ease, color .12s ease, border-color .12s ease;
}

.jp-help-icon:hover[b-ef123879nu],
.jp-help-icon:focus-visible[b-ef123879nu] {
    color: #fff;
    background: var(--jp-primary, #0b5cab);
    border-color: var(--jp-primary, #0b5cab);
    outline: none;
}

.jp-help-icon:focus-visible[b-ef123879nu] {
    box-shadow: 0 0 0 2px var(--jp-primary-soft, #eaf2fb);
}
/* /Components/Shared/PayrollExportTable.razor.rz.scp.css */
.tw-id-full[b-1bdchb4jxs] {
    font-family: monospace;
    font-size: 12px;
    word-break: keep-all;
    white-space: nowrap;
}

/* Chip stato — fallback colorati garantiti anche se tw-badge--* globali mancano. */
[b-1bdchb4jxs] .tw-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    min-width: 90px;
}
[b-1bdchb4jxs] .tw-badge.tw-badge--muted {
    background: #e5e7eb;
    color: #374151;
}
[b-1bdchb4jxs] .tw-badge.tw-badge--warning {
    background: #fef3c7;
    color: #92400e;
}
[b-1bdchb4jxs] .tw-badge.tw-badge--success {
    background: #d1fae5;
    color: #065f46;
}
[b-1bdchb4jxs] .tw-badge.tw-badge--danger {
    background: #fee2e2;
    color: #991b1b;
}

/* Azioni — flex centrato verticalmente per allineare <a> "Scarica" e <button> "Elimina". */
.payroll-export-actions[b-1bdchb4jxs] {
    display: flex;
    gap: 6px;
    align-items: center;
}
.payroll-export-btn[b-1bdchb4jxs] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 6px 12px;
    text-decoration: none;
    vertical-align: middle;
}
