/* /Layout/MainLayout.razor.rz.scp.css */
.lp-layout[b-st9b1rlgld] {
    --lp-topbar-h: 3.5rem; /* 56px */
    --lp-sidebar-w: 16.25rem; /* 260px */

    display: grid;
    grid-template-columns: var(--lp-sidebar-w) 1fr;
    grid-template-rows: var(--lp-topbar-h) 1fr;
    grid-template-areas:
        "top top"
        "side content";
    height: 100vh;
    overflow: hidden;
}

/* TOPBAR */
.lp-topbar[b-st9b1rlgld] {
    grid-area: top;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--lp-topbar-h);
    width: 100%;
    z-index: 40;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: var(--lp-space-3);
    padding: 0 var(--lp-space-4);
    border-bottom: 1px solid var(--lp-border);
    background: var(--lp-surface);
}

.lp-top-left[b-st9b1rlgld] {
    display: flex;
    align-items: center;
}

.lp-top-center[b-st9b1rlgld] {
    display: flex;
    justify-content: center;
    text-align: center;
    font-weight: 800;
}

.lp-center-stack[b-st9b1rlgld] {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    gap: .15rem;
}

.lp-top-right[b-st9b1rlgld] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--lp-space-3);
    opacity: .9;
}

.lp-user-mobile[b-st9b1rlgld] {
    display: none;
    font-weight: 600;
    opacity: .85;
    font-size: .85rem;
}

.lp-user-desktop[b-st9b1rlgld] {
    font-weight: 600;
}

/* LOGO */
.lp-logo[b-st9b1rlgld] {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: var(--lp-radius-sm);
    display: grid;
    place-items: center;
    border: 1px solid var(--lp-border);
    overflow: hidden;
    background: var(--lp-surface);
}

    .lp-logo img[b-st9b1rlgld] {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

/* BURGER */
.lp-burger[b-st9b1rlgld] {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--lp-border);
    background: var(--lp-surface);
    border-radius: var(--lp-radius-sm);
    display: none;
    padding: .5rem;
}

    .lp-burger span[b-st9b1rlgld] {
        display: block;
        height: 2px;
        background: var(--lp-text);
        margin: .25rem 0;
        border-radius: 2px;
    }

    .lp-burger:focus-visible[b-st9b1rlgld] {
        outline: none;
        box-shadow: 0 0 0 4px var(--lp-focus-ring);
    }

/* SIDEBAR */
.lp-sidebar[b-st9b1rlgld] {
    grid-area: side;
    position: fixed;
    top: var(--lp-topbar-h);
    left: 0;
    bottom: 0;
    width: var(--lp-sidebar-w);
    z-index: 30;
    overflow: auto;
    border-right: 1px solid var(--lp-border);
    background: var(--lp-surface);
    padding: var(--lp-space-3);
}

.lp-nav[b-st9b1rlgld] {
    display: flex;
    flex-direction: column;
    gap: .375rem;
}

    .lp-nav[b-st9b1rlgld]  .lp-link {
        display: block;
        padding: .75rem .85rem;
        border-radius: var(--lp-radius-sm);
        text-decoration: none;
        color: var(--lp-text);
        border: 1px solid transparent;
        font-weight: 700;
    }

        .lp-nav[b-st9b1rlgld]  .lp-link.active {
            background: rgba(0, 0, 0, .04);
            border-color: var(--lp-border);
        }

        .lp-nav[b-st9b1rlgld]  .lp-link:hover {
            background: rgba(0, 0, 0, .03);
        }

/* Botón "Salir" */
.lp-link-btn[b-st9b1rlgld] {
    font-size: 1rem;
    text-align: left;
    background: transparent;
    cursor: pointer;
    padding: .75rem .85rem;
    border-radius: var(--lp-radius-sm);
    border: 1px solid transparent;
    color: var(--lp-text);
    font-weight: 800;
}

    .lp-link-btn:hover[b-st9b1rlgld] {
        background: rgba(0, 0, 0, .03);
    }

    .lp-link-btn:focus-visible[b-st9b1rlgld] {
        outline: none;
        box-shadow: 0 0 0 4px var(--lp-focus-ring);
    }

/* CONTENT */
.lp-content[b-st9b1rlgld] {
    grid-area: content;
    padding: var(--lp-space-4);
    background: var(--lp-bg);
    overflow: auto;
    min-height: 0;
}

/* PUBLIC */
.lp-public[b-st9b1rlgld] {
    padding: var(--lp-space-4);
}

/* OVERLAY (mobile) */
.lp-overlay[b-st9b1rlgld] {
    display: none;
}

/* RESPONSIVE */
@media (max-width: 56.25rem) {
    .lp-layout[b-st9b1rlgld] {
        grid-template-columns: 1fr;
        grid-template-areas: "top" "content";
    }

    .lp-burger[b-st9b1rlgld] {
        display: inline-block;
    }

    .lp-user-desktop[b-st9b1rlgld] {
        display: none;
    }

    .lp-user-mobile[b-st9b1rlgld] {
        display: block;
    }

    .lp-content[b-st9b1rlgld] {
        margin-left: 0;
    }

    .lp-sidebar[b-st9b1rlgld] {
        right: 0;
        left: auto;
        width: var(--lp-sidebar-w);
        transform: translateX(110%);
        transition: transform .18s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    }

        .lp-sidebar.open[b-st9b1rlgld] {
            transform: translateX(0);
        }

    .lp-overlay[b-st9b1rlgld] {
        display: block;
        position: fixed;
        inset: var(--lp-topbar-h) 0 0 0;
        background: rgba(0, 0, 0, .35);
        opacity: 0;
        pointer-events: none;
        transition: opacity .18s ease;
        z-index: 25;
    }

        .lp-overlay.show[b-st9b1rlgld] {
            opacity: 1;
            pointer-events: auto;
        }
}

:global(html[data-theme="dark"]) .lp-nav[b-st9b1rlgld]  .lp-link.active {
    background: rgba(255, 255, 255, .06);
}

:global(html[data-theme="dark"]) .lp-nav[b-st9b1rlgld]  .lp-link:hover,
:global(html[data-theme="dark"]) .lp-link-btn:hover[b-st9b1rlgld] {
    background: rgba(255, 255, 255, .04);
}

:global(html[data-scale="175"]) .lp-layout[b-st9b1rlgld],
:global(html[data-scale="200"]) .lp-layout[b-st9b1rlgld] {
    --lp-sidebar-w: 14rem;
}
/* /Pages/Configuración.razor.rz.scp.css */
.cfg-shell[b-leb3ews3rq] {
    display: flex;
    flex-direction: column;
    gap: var(--lp-space-4);
    max-width: 56rem;
}

.cfg-header[b-leb3ews3rq] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--lp-space-3);
    flex-wrap: wrap;
}

.cfg-title h1[b-leb3ews3rq] {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.15;
}

.cfg-sub[b-leb3ews3rq] {
    margin-top: .25rem;
    font-size: .9rem;
    opacity: .75;
}

.cfg-card[b-leb3ews3rq] {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: var(--lp-space-4);
}

.cfg-grid[b-leb3ews3rq] {
    display: grid;
    grid-template-columns: repeat(2, minmax(14rem, 1fr));
    gap: var(--lp-space-4);
}

.cfg-field label[b-leb3ews3rq] {
    display: block;
    font-weight: 900;
    margin-bottom: .35rem;
}

.cfg-note[b-leb3ews3rq] {
    margin-top: var(--lp-space-4);
    font-size: .9rem;
    opacity: .85;
}

.cfg-status[b-leb3ews3rq] {
    margin-top: var(--lp-space-3);
    font-size: .9rem;
    opacity: .85;
}

@media (max-width: 44rem) {
    .cfg-grid[b-leb3ews3rq] {
        grid-template-columns: 1fr;
    }
}
/* /Pages/Lecturas.razor.rz.scp.css */
.reads-filters[b-58nrsh7ass] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--lp-space-3);
    align-items: flex-end;
    margin: 0 0 var(--lp-space-3) 0;
}

.reads-field[b-58nrsh7ass] {
    min-width: 14rem;
}

.reads-field-wide[b-58nrsh7ass] {
    min-width: 16rem;
    flex: 1 1 16rem;
}

.reads-field-socio[b-58nrsh7ass] {
    min-width: 26rem;
    flex: 1 1 26rem;
}

.reads-field label[b-58nrsh7ass] {
    display: block;
    font-weight: 800;
    margin-bottom: .35rem;
}

.reads-socio-row[b-58nrsh7ass] {
    display: flex;
    gap: var(--lp-space-2);
    flex-wrap: wrap;
    align-items: center;
}

.reads-actions[b-58nrsh7ass] {
    display: flex;
    gap: var(--lp-space-2);
    flex-wrap: wrap;
    align-items: center;
}

.reads-chip[b-58nrsh7ass] {
    margin-top: .5rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .35rem .6rem;
    border-radius: 999px;
    border: 1px solid var(--lp-border);
    background: var(--lp-surface);
}

.reads-chip-x[b-58nrsh7ass] {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    border: 1px solid var(--lp-border);
    background: transparent;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
}

    .reads-chip-x:focus-visible[b-58nrsh7ass] {
        outline: none;
        box-shadow: 0 0 0 4px var(--lp-focus-ring);
    }

.reads-hint[b-58nrsh7ass] {
    margin-top: .35rem;
    font-size: .9rem;
    opacity: .8;
}

/* Modal (local) */
.lp-modal-backdrop[b-58nrsh7ass] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.35);
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .75rem;
}

.lp-modal[b-58nrsh7ass] {
    width: 100%;
    max-width: 42rem;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    box-shadow: 0 18px 60px rgba(0,0,0,.20);
    max-height: calc(100vh - 1.5rem);
    overflow: auto;
    display: flex;
    flex-direction: column;
}

.lp-modal-head[b-58nrsh7ass] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--lp-space-3);
    padding: .75rem;
    border-bottom: 1px solid var(--lp-border);
}

.lp-modal-title[b-58nrsh7ass] {
    font-weight: 900;
}

.lp-x[b-58nrsh7ass] {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: var(--lp-radius-sm);
    border: 1px solid var(--lp-border);
    background: var(--lp-surface);
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
}

    .lp-x:focus-visible[b-58nrsh7ass] {
        outline: none;
        box-shadow: 0 0 0 4px var(--lp-focus-ring);
    }

.lp-modal-body[b-58nrsh7ass] {
    padding: .75rem;
    display: flex;
    flex-direction: column;
    gap: var(--lp-space-3);
}

.reads-socio-list[b-58nrsh7ass] {
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    overflow: auto;
    max-height: 22rem;
    background: var(--lp-surface);
}

.reads-socio-item[b-58nrsh7ass] {
    width: 100%;
    text-align: left;
    padding: .75rem .85rem;
    border: 0;
    border-bottom: 1px solid var(--lp-border);
    background: transparent;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    gap: var(--lp-space-3);
}

    .reads-socio-item:last-child[b-58nrsh7ass] {
        border-bottom: 0;
    }

    .reads-socio-item:hover[b-58nrsh7ass] {
        background: rgba(0,0,0,.03);
    }

:global(html[data-theme="dark"]) .reads-socio-item:hover[b-58nrsh7ass] {
    background: rgba(255,255,255,.04);
}

.reads-socio-name[b-58nrsh7ass] {
    font-weight: 800;
}

.reads-socio-code[b-58nrsh7ass] {
    opacity: .75;
}

@media (max-width: 40rem) {
    .reads-field[b-58nrsh7ass], .reads-field-wide[b-58nrsh7ass], .reads-field-socio[b-58nrsh7ass] {
        min-width: 100%;
    }

    .reads-actions[b-58nrsh7ass] {
        width: 100%;
    }
}
/* /Pages/Loging.razor.rz.scp.css */
.login-shell[b-353wig4l43] {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px 14px;
    background: linear-gradient(180deg, #f6f7f9 0%, #ffffff 60%);
    overflow: auto; /* por si en móvil el teclado reduce altura */
}

.login-card[b-353wig4l43] {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

.login-header[b-353wig4l43] {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}

.login-logo[b-353wig4l43] {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid #e6e6e6;
    background: #fff;
    object-fit: contain;
    padding: 6px;
}

.login-title h1[b-353wig4l43] {
    margin: 0;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 700;
}

.login-title p[b-353wig4l43] {
    margin: 4px 0 0 0;
    font-size: 13px;
    opacity: .75;
}

.login-alert[b-353wig4l43] {
    border: 1px solid #f2c2c2;
    background: #fff4f4;
    color: #7b1f1f;
    padding: 10px 12px;
    border-radius: 12px;
    margin: 10px 0 12px 0;
    font-size: 13px;
}

.login-validation[b-353wig4l43] {
    margin: 0 0 10px 0;
    font-size: 12px;
    opacity: .85;
}

.login-fields[b-353wig4l43] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.login-field label[b-353wig4l43] {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    opacity: .9;
}

.login-input[b-353wig4l43] {
    width: 100%;
    height: 44px;
    padding: 0 12px;
    border-radius: 12px;
    border: 1px solid #e3e3e3;
    background: #fff;
    outline: none;
}

    .login-input:focus[b-353wig4l43] {
        border-color: #bfc7ff;
        box-shadow: 0 0 0 4px rgba(118, 132, 255, .15);
    }

.login-btn[b-353wig4l43] {
    height: 44px;
    border: 0;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    background: #111;
    color: #fff;
}

    .login-btn:disabled[b-353wig4l43] {
        opacity: .6;
        cursor: not-allowed;
    }

.login-foot[b-353wig4l43] {
    margin-top: 14px;
    font-size: 12px;
    opacity: .6;
    text-align: center;
}
/* /Pages/Usuarios.razor.rz.scp.css */
.users-shell[b-nt6b2f1qo3] {
    display: flex;
    flex-direction: column;
    gap: var(--lp-space-3);
}

.users-header[b-nt6b2f1qo3] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--lp-space-3);
    flex-wrap: wrap;
}

.users-title h1[b-nt6b2f1qo3] {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.15;
}

.users-sub[b-nt6b2f1qo3] {
    margin-top: .25rem;
    font-size: .85rem;
    opacity: .75;
}

.users-actions[b-nt6b2f1qo3] {
    display: flex;
    gap: var(--lp-space-3);
    align-items: center;
    flex-wrap: wrap;
}

/* Mensajes */
.users-banner[b-nt6b2f1qo3] {
    padding: .65rem .75rem;
    border-radius: var(--lp-radius);
    border: 1px solid transparent;
    font-size: .9rem;
}

.users-banner-warn[b-nt6b2f1qo3] {
    border-color: rgba(178, 106, 0, .35);
    background: rgba(255, 191, 0, .10);
    color: var(--lp-text);
}

.users-banner-error[b-nt6b2f1qo3] {
    border-color: rgba(179, 38, 30, .35);
    background: rgba(179, 38, 30, .08);
    color: var(--lp-text);
}

.users-status[b-nt6b2f1qo3] {
    font-size: .9rem;
    opacity: .85;
}

/* Tabla */
.users-tablewrap[b-nt6b2f1qo3] {
    overflow: auto;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    background: var(--lp-surface);
}

.users-table[b-nt6b2f1qo3] {
    width: 100%;
    min-width: 980px; /* estable aunque subas escala */
    border-collapse: separate;
    border-spacing: 0;
}

    .users-table thead th[b-nt6b2f1qo3] {
        position: sticky;
        top: 0;
        background: var(--lp-surface);
        z-index: 1;
        text-align: left;
        font-size: .85rem;
        padding: .65rem .75rem;
        border-bottom: 1px solid var(--lp-border);
        white-space: nowrap;
    }

.users-th-actions[b-nt6b2f1qo3] {
    text-align: left;
    min-width: 19rem;
}

.users-table tbody td[b-nt6b2f1qo3] {
    padding: .65rem .75rem;
    border-bottom: 1px solid var(--lp-border);
    font-size: .9rem;
    background: var(--lp-surface);
    white-space: nowrap;
}

.users-table tbody tr:hover td[b-nt6b2f1qo3] {
    background: rgba(0, 0, 0, .02);
}

/* Permitir wrap en nombre/email para no “romper” con textos largos */
.users-table td:nth-child(2)[b-nt6b2f1qo3],
.users-table td:nth-child(3)[b-nt6b2f1qo3] {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.users-table td:nth-child(2)[b-nt6b2f1qo3] {
    min-width: 12rem;
}

.users-table td:nth-child(3)[b-nt6b2f1qo3] {
    min-width: 16rem;
}

.users-empty[b-nt6b2f1qo3] {
    padding: 1.1rem .75rem;
    text-align: center;
    opacity: .75;
}

.users-badge[b-nt6b2f1qo3] {
    display: inline-flex;
    align-items: center;
    padding: .25rem .6rem;
    border-radius: 999px;
    font-size: .8rem;
    border: 1px solid transparent;
}

.users-badge-ok[b-nt6b2f1qo3] {
    background: rgba(31, 107, 55, .10);
    border-color: rgba(31, 107, 55, .25);
    color: var(--lp-text);
}

.users-badge-off[b-nt6b2f1qo3] {
    background: rgba(179, 38, 30, .08);
    border-color: rgba(179, 38, 30, .25);
    color: var(--lp-text);
}

.users-actions-cell[b-nt6b2f1qo3] {
    display: flex;
    gap: var(--lp-space-2);
    flex-wrap: wrap;
    align-items: center;
}

/* ===================== MODAL (scoped) ===================== */
.lp-modal-backdrop[b-nt6b2f1qo3] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .75rem;
}

.lp-modal[b-nt6b2f1qo3] {
    width: 100%;
    max-width: 32.5rem; /* 520px */
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .20);
    max-height: calc(100vh - 1.5rem);
    display: flex;
    flex-direction: column;
    /* clave para accesibilidad: si escala 130% y hay muchos campos, que se pueda scrollear */
    overflow: auto;
}

.lp-modal-head[b-nt6b2f1qo3] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--lp-space-3);
    padding: .75rem;
    border-bottom: 1px solid var(--lp-border);
}

.lp-modal-title[b-nt6b2f1qo3] {
    font-weight: 900;
    font-size: 1rem;
}

.lp-x[b-nt6b2f1qo3] {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: var(--lp-radius-sm);
    border: 1px solid var(--lp-border);
    background: var(--lp-surface);
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
}

    .lp-x:focus-visible[b-nt6b2f1qo3] {
        outline: none;
        box-shadow: 0 0 0 4px var(--lp-focus-ring);
    }

.lp-modal-sub[b-nt6b2f1qo3] {
    padding: .5rem .75rem 0 .75rem;
    font-size: .9rem;
    opacity: .85;
}

.lp-modal-alert[b-nt6b2f1qo3] {
    margin: .5rem .75rem 0 .75rem;
    border: 1px solid rgba(179, 38, 30, .35);
    background: rgba(179, 38, 30, .08);
    color: var(--lp-text);
    padding: .5rem .65rem;
    border-radius: var(--lp-radius);
    font-size: .9rem;
}

.lp-validation[b-nt6b2f1qo3] {
    padding: .5rem .75rem 0 .75rem;
    font-size: .85rem;
    opacity: .9;
}

.lp-grid[b-nt6b2f1qo3] {
    padding: .75rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--lp-space-3);
}

.lp-span2[b-nt6b2f1qo3] {
    grid-column: span 2;
}

.lp-field label[b-nt6b2f1qo3] {
    display: block;
    font-size: .9rem;
    font-weight: 800;
    margin-bottom: .25rem;
    opacity: .9;
}

.lp-input[b-nt6b2f1qo3] {
    width: 100%;
    min-height: var(--lp-control-h-sm);
    padding: 0 .75rem;
    border-radius: var(--lp-radius);
    border: 1px solid var(--lp-border-strong);
    outline: none;
    background: var(--lp-surface);
    color: var(--lp-text);
}

    .lp-input:focus[b-nt6b2f1qo3] {
        border-color: var(--lp-focus);
        box-shadow: 0 0 0 4px var(--lp-focus-ring);
    }

.lp-modal-actions[b-nt6b2f1qo3] {
    margin-top: auto;
    display: flex;
    gap: var(--lp-space-3);
    justify-content: flex-end;
    padding: .65rem .75rem .75rem .75rem;
    border-top: 1px solid var(--lp-border);
}

.lp-confirm[b-nt6b2f1qo3] {
    padding: .75rem;
}

.lp-confirm-main[b-nt6b2f1qo3] {
    font-size: 1rem;
}

.lp-confirm-sub[b-nt6b2f1qo3] {
    margin-top: .4rem;
    font-size: .9rem;
    opacity: .75;
}

/* Guard de eliminación */
.lp-delete-guard[b-nt6b2f1qo3] {
    padding: 0 .75rem .75rem .75rem;
}

.lp-delete-guard-label[b-nt6b2f1qo3] {
    font-size: .9rem;
    font-weight: 900;
    margin-bottom: .35rem;
}

.lp-delete-guard-hint[b-nt6b2f1qo3] {
    margin-top: .35rem;
    font-size: .85rem;
    opacity: .8;
}

/* Responsive */
@media (max-width: 40rem) { /* 640px */
    .lp-grid[b-nt6b2f1qo3] {
        grid-template-columns: 1fr;
    }

    .lp-span2[b-nt6b2f1qo3] {
        grid-column: auto;
    }

    .lp-modal-backdrop[b-nt6b2f1qo3] {
        align-items: flex-start;
        padding-top: 1rem;
    }
}

/* Dark theme hover */
:global(html[data-theme="dark"]) .users-table tbody tr:hover td[b-nt6b2f1qo3] {
    background: rgba(255, 255, 255, .04);
}
