/* _content/TeamNotify/Components/Layout/CenteredLayout.razor.rz.scp.css */


/* CenteredLayout.razor.css - est�tica y animaciones */

/* Fondo animado */
.centered-layout[b-h75m0zk88g] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    background: linear-gradient(135deg, #0f172a 0%, #0b3d91 40%, #0b6fb0 100%);
    background-size: 300% 300%;
    animation: bgShift-b-h75m0zk88g 12s ease-in-out infinite;
}

/* Animaci�n de fondo */
@keyframes bgShift-b-h75m0zk88g {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Tarjeta con entrada suave */
.centered-card[b-h75m0zk88g] {
    width: 100%;
    max-width: 980px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,250,252,0.98));
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(2,6,23,0.45);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 1.5rem;
    box-sizing: border-box;
    transform: translateY(18px);
    opacity: 0;
    animation: cardIn-b-h75m0zk88g 520ms cubic-bezier(.2,.9,.3,1) forwards;
}

/* Entrada de la tarjeta */
@keyframes cardIn-b-h75m0zk88g {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Header de marca */
.login-brand[b-h75m0zk88g] {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 0.75rem;
    justify-content: center;
}

/* Logo animado */
.brand-logo[b-h75m0zk88g] {
    width: 64px;
    height: 64px;
    display: block;
    border-radius: 12px;
    padding: 8px;
    background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    box-shadow: 0 6px 18px rgba(2,6,23,0.25), inset 0 -6px 12px rgba(255,255,255,0.02);
    transform-origin: center;
    animation: logoFloat-b-h75m0zk88g 3.6s ease-in-out infinite;
}

/* Sutil flotaci�n y rotaci�n */
@keyframes logoFloat-b-h75m0zk88g {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-6px) rotate(3deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.brand-text[b-h75m0zk88g] {
    text-align: left;
    line-height: 1;
}

.brand-name[b-h75m0zk88g] {
    display: block;
    font-weight: 700;
    font-size: 1.05rem;
    color: #071033;
}

.brand-sub[b-h75m0zk88g] {
    display: block;
    font-size: 0.8rem;
    color: #4b5563;
}

/* Login body mantiene el estilo previo */
.login-body[b-h75m0zk88g] {
    padding-top: 0.5rem;
}

/* Form card interno */
.form-card[b-h75m0zk88g] {
    background: transparent;
    padding: 0.5rem 0;
}

/* Inputs: efecto de foco con l�nea animada */
.full-width-input[b-h75m0zk88g] {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(15,23,42,0.06);
    background: linear-gradient(180deg, #fff, #fbfdff);
    transition: box-shadow .18s ease, transform .12s ease, border-color .12s ease;
    outline: none;
    box-shadow: 0 2px 8px rgba(2,6,23,0.04);
}

    .full-width-input:focus[b-h75m0zk88g] {
        transform: translateY(-2px);
        border-color: rgba(11,109,176,0.95);
        box-shadow: 0 10px 30px rgba(11,109,176,0.08);
    }

    /* Placeholder suave */
    .full-width-input[b-h75m0zk88g]::placeholder {
        color: #9aa4b2;
    }

/* Bot�n principal con efecto ripple CSS puro (pseudo-elemento) */
.btn-primary[b-h75m0zk88g] {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: transform .12s ease, box-shadow .12s ease;
    background: linear-gradient(90deg,#0b6fb0,#0b3d91);
    border: none;
    color: #fff;
    padding: 0.75rem 1rem;
    box-shadow: 0 8px 24px rgba(11,109,176,0.18);
}

    .btn-primary:active[b-h75m0zk88g] {
        transform: translateY(1px) scale(.998);
        box-shadow: 0 6px 18px rgba(11,109,176,0.14);
    }

    /* Micro-ripple on click using pseudo-element animation */
    .btn-primary[b-h75m0zk88g]::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: 0;
        height: 0;
        background: rgba(255,255,255,0.12);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width .45s ease, height .45s ease, opacity .45s ease;
        opacity: 0;
    }

    .btn-primary:active[b-h75m0zk88g]::after {
        width: 240px;
        height: 240px;
        opacity: 1;
        transition: width .45s ease, height .45s ease, opacity .45s ease;
    }

/* Small helper: validation messages */
.text-danger[b-h75m0zk88g] {
    color: #b91c1c !important;
}

/* Footer */
.login-footer[b-h75m0zk88g] {
    margin-top: 0.75rem;
    text-align: center;
    color: #6b7280;
    font-size: 0.85rem;
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
    .brand-logo[b-h75m0zk88g] {
        width: 56px;
        height: 56px;
    }

    .brand-name[b-h75m0zk88g] {
        font-size: 1rem;
    }

    .centered-card[b-h75m0zk88g] {
        padding: 1rem;
    }
}

/* _content/TeamNotify/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-h1vy3s07w6] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-h1vy3s07w6] {
    flex: 1;
}

.sidebar[b-h1vy3s07w6] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-h1vy3s07w6] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-h1vy3s07w6]  a, .top-row[b-h1vy3s07w6]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-h1vy3s07w6]  a:hover, .top-row[b-h1vy3s07w6]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-h1vy3s07w6]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-h1vy3s07w6] {
        justify-content: space-between;
    }

    .top-row[b-h1vy3s07w6]  a, .top-row[b-h1vy3s07w6]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-h1vy3s07w6] {
        flex-direction: row;
    }

    .sidebar[b-h1vy3s07w6] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-h1vy3s07w6] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-h1vy3s07w6]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-h1vy3s07w6], article[b-h1vy3s07w6] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-h1vy3s07w6] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-h1vy3s07w6] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/TeamNotify/Components/Layout/NavMenu.razor.rz.scp.css */


/* SidebarNav.razor.css - estilos y animaciones para el men� lateral */

/* Top bar */
.top-row[b-d18kt8kilv] {
    height: 3.5rem;
    background: linear-gradient(90deg, rgba(2,6,23,0.85), rgba(11,109,176,0.85));
    color: #fff;
    display: flex;
    align-items: center;
    padding-left: 1rem;
    box-shadow: 0 6px 18px rgba(2,6,23,0.25);
    z-index: 40;
}

/* Brand */
.navbar-brand[b-d18kt8kilv] {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* Toggler (hamburger) */
.navbar-toggler[b-d18kt8kilv] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04) center/1.75rem no-repeat;
    transition: transform .28s cubic-bezier(.2,.9,.3,1), background-color .18s ease, box-shadow .18s ease;
    z-index: 50;
}

    /* Animated morph when checked */
    .navbar-toggler:checked[b-d18kt8kilv] {
        transform: rotate(90deg) scale(1.02);
        background-color: rgba(255,255,255,0.12);
        box-shadow: 0 8px 20px rgba(2,6,23,0.18);
    }

/* Sidebar container */
.nav-scrollable[b-d18kt8kilv] {
    display: none;
    position: fixed;
    top: 3.5rem;
    left: 0;
    width: 260px;
    height: calc(100vh - 3.5rem);
    background: linear-gradient(180deg, rgba(11,109,176,0.95), rgba(11,61,120,0.95));
    color: #e6eef8;
    padding: 0.5rem 0;
    box-shadow: 6px 0 24px rgba(2,6,23,0.28);
    overflow-y: auto;
    transform: translateX(-12px);
    opacity: 0;
    transition: transform .36s cubic-bezier(.2,.9,.3,1), opacity .36s ease;
    z-index: 45;
}

/* Show when toggled */
.navbar-toggler:checked ~ .nav-scrollable[b-d18kt8kilv] {
    display: block;
    transform: translateX(0);
    opacity: 1;
}

/* Desktop: always visible and static */
@media (min-width: 641px) {
    .navbar-toggler[b-d18kt8kilv] {
        display: none;
    }

    .nav-scrollable[b-d18kt8kilv] {
        display: block;
        position: fixed;
        transform: none;
        opacity: 1;
        left: 0;
        top: 3.5rem;
        width: 260px;
        height: calc(100vh - 3.5rem);
    }
}

/* Nav column layout */
.nav-column[b-d18kt8kilv] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.5rem 0.5rem 1.5rem 0.5rem;
}

/* Divider */
.nav-divider[b-d18kt8kilv] {
    height: 1px;
    margin: 0.5rem 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
}

/* Nav item base */
.nav-item[b-d18kt8kilv] {
    font-size: 0.95rem;
    padding: 0.25rem 0.75rem;
    display: block;
    position: relative;
}

    /* Link style */
    .nav-item[b-d18kt8kilv]  .nav-link {
        color: #d7e9ff;
        background: transparent;
        border: none;
        border-radius: 8px;
        height: 3.2rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0 0.75rem;
        line-height: 1;
        width: 100%;
        transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
        text-decoration: none;
    }

        /* Hover micro interaction */
        .nav-item[b-d18kt8kilv]  .nav-link:hover {
            background: linear-gradient(90deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
            transform: translateX(6px);
            box-shadow: 0 8px 20px rgba(2,6,23,0.12);
            color: #fff;
        }

    /* Active item: glow and accent bar */
    .nav-item[b-d18kt8kilv]  a.active {
        background: linear-gradient(90deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
        color: #fff;
        box-shadow: 0 10px 30px rgba(11,109,176,0.12);
    }

        .nav-item[b-d18kt8kilv]  a.active::before {
            content: "";
            position: absolute;
            left: 0.25rem;
            top: 0.6rem;
            bottom: 0.6rem;
            width: 4px;
            border-radius: 4px;
            background: linear-gradient(180deg, #ffd166, #ff7a66);
            box-shadow: 0 6px 18px rgba(255,122,102,0.12);
        }

/* Icon base and animation */
.bi[b-d18kt8kilv] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    top: 0;
    background-size: cover;
    transition: transform .28s cubic-bezier(.2,.9,.3,1), filter .18s ease;
}

/* subtle icon float on hover */
.nav-item[b-d18kt8kilv]  .nav-link:hover .bi {
    transform: translateY(-3px) rotate(-6deg);
    filter: drop-shadow(0 6px 12px rgba(2,6,23,0.18));
}

/* Text label */
.nav-text[b-d18kt8kilv] {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Logout button style */
.logout-button[b-d18kt8kilv] {
    color: #ffdede;
    text-align: left;
    width: 100%;
    background: transparent;
    border: none;
    padding: 0;
}

    .logout-button:hover[b-d18kt8kilv] {
        color: #fff;
    }

/* Scrollbar styling (subtle) */
.nav-scrollable[b-d18kt8kilv]::-webkit-scrollbar {
    width: 8px;
}

.nav-scrollable[b-d18kt8kilv]::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

/* Small screens: compact items */
@media (max-width: 640px) {
    .nav-text[b-d18kt8kilv] {
        font-size: 0.95rem;
    }

    .nav-item[b-d18kt8kilv]  .nav-link {
        height: 3rem;
        padding: 0 0.6rem;
    }
}

/* Accessibility: reduce motion */
@media (prefers-reduced-motion: reduce) {
    .navbar-toggler[b-d18kt8kilv], .nav-scrollable[b-d18kt8kilv], .nav-item[b-d18kt8kilv]  .nav-link, .bi[b-d18kt8kilv] {
        transition: none !important;
        animation: none !important;
        transform: none !important;
    }
}
/* _content/TeamNotify/Components/Layout/TicketLayout.razor.rz.scp.css */
/* Shared/TicketLayout.razor.css */
.ticket-layout-root[b-o3e9cqki6h] {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 1rem;
    background: transparent;
    min-height: 100vh;
}

.ticket-layout-body[b-o3e9cqki6h] {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* _content/TeamNotify/Components/Layout/TopNotifications.razor.rz.scp.css */
/* TopNotifications.razor.css
   Scoped styles for TopNotifications. Place this file next to TopNotifications.razor.
   All selectors are rooted under .top-notifications so styles behave like "anidados". */

/* Variables (simple CSS custom properties) */
:root[b-i9zx4wia8f] {
    --tn-font: 'InterLocal', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --tn-accent: #0b3d91;
    --tn-badge-grad: linear-gradient(90deg,#ff6b6b,#ff3b3b);
    --tn-panel-w: 360px;
    --tn-radius: 12px;
    --tn-shadow: 0 18px 50px rgba(2,6,23,0.12);
    --tn-muted: #6b7280;
    --tn-text: #071033;
    --tn-anim-fast: 120ms;
    --tn-anim-medium: 180ms;
}

/* Root container (acts like the outer nested block) */
.top-notifications[b-i9zx4wia8f] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
    font-family: var(--tn-font);
}

    /* Brand and actions wrapper */
    .top-notifications .brand-and-actions[b-i9zx4wia8f] {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    /* Brand link */
    .top-notifications .brand-link .app-brand[b-i9zx4wia8f] {
        color: var(--tn-text);
        font-weight: 700;
        text-decoration: none;
        font-size: 1rem;
        padding: 0.25rem 0.5rem;
        border-radius: 8px;
        display: inline-block;
    }

    /* Actions group */
    .top-notifications .actions[b-i9zx4wia8f] {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

        /* Notification button */
        .top-notifications .actions .notif-btn[b-i9zx4wia8f] {
            position: relative;
            background: linear-gradient(180deg,#ffffff,#f6f9ff);
            border: 1px solid rgba(15,23,42,0.06);
            padding: 0.45rem 0.6rem;
            border-radius: 10px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 6px 18px rgba(2,6,23,0.06);
            transition: transform var(--tn-anim-fast) ease, box-shadow var(--tn-anim-fast) ease, background var(--tn-anim-fast) ease;
        }

            .top-notifications .actions .notif-btn:focus[b-i9zx4wia8f] {
                outline: 3px solid rgba(11,109,176,0.14);
                outline-offset: 2px;
            }

            .top-notifications .actions .notif-btn:hover[b-i9zx4wia8f] {
                transform: translateY(-2px);
                box-shadow: 0 12px 30px rgba(2,6,23,0.08);
            }

            /* Badge on button */
            .top-notifications .actions .notif-btn .badge[b-i9zx4wia8f] {
                position: absolute;
                top: -6px;
                right: -6px;
                background: var(--tn-badge-grad);
                color: white;
                font-size: 0.7rem;
                padding: 0.18rem 0.36rem;
                border-radius: 999px;
                box-shadow: 0 6px 18px rgba(255,59,59,0.18);
            }

        /* User avatar */
        .top-notifications .actions .user-avatar[b-i9zx4wia8f] {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            overflow: hidden;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: 1px solid rgba(15,23,42,0.06);
            background: linear-gradient(180deg,#fff,#f7fbff);
            box-shadow: 0 6px 18px rgba(2,6,23,0.06);
        }

            .top-notifications .actions .user-avatar img[b-i9zx4wia8f] {
                width: 100%;
                height: 100%;
                object-fit: cover;
                display: block;
            }

            .top-notifications .actions .user-avatar .avatar-initials[b-i9zx4wia8f] {
                font-weight: 700;
                color: var(--tn-accent);
                font-size: 0.95rem;
            }

    /* Panel (dropdown) */
    .top-notifications .notif-panel[b-i9zx4wia8f] {
        position: absolute;
        right: 0;
        top: calc(100% + 10px);
        width: var(--tn-panel-w);
        max-width: calc(100vw - 32px);
        background: linear-gradient(180deg,#ffffff,#fbfdff);
        border-radius: var(--tn-radius);
        box-shadow: var(--tn-shadow);
        border: 1px solid rgba(2,6,23,0.04);
        transform-origin: top right;
        transform: scale(.98) translateY(-6px);
        opacity: 0;
        pointer-events: none;
        transition: transform var(--tn-anim-medium) cubic-bezier(.2,.9,.3,1), opacity var(--tn-anim-medium) ease;
        z-index: 120;
        overflow: hidden;
    }

        .top-notifications .notif-panel.open[b-i9zx4wia8f] {
            transform: scale(1) translateY(0);
            opacity: 1;
            pointer-events: auto;
        }

        /* Panel header */
        .top-notifications .notif-panel .panel-header[b-i9zx4wia8f] {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 1rem;
            border-bottom: 1px solid rgba(2,6,23,0.03);
            background: linear-gradient(180deg, rgba(11,109,176,0.03), transparent);
        }

            .top-notifications .notif-panel .panel-header strong[b-i9zx4wia8f] {
                font-size: 0.95rem;
            }

            .top-notifications .notif-panel .panel-header .mark-read[b-i9zx4wia8f] {
                background: transparent;
                border: none;
                color: var(--tn-accent);
                cursor: pointer;
                font-size: 0.85rem;
            }

        /* Empty state */
        .top-notifications .notif-panel .panel-empty[b-i9zx4wia8f] {
            padding: 1rem;
            color: var(--tn-muted);
            text-align: center;
        }

        /* Notification list */
        .top-notifications .notif-panel .notif-list[b-i9zx4wia8f] {
            list-style: none;
            margin: 0;
            padding: 0.5rem;
            max-height: 320px;
            overflow-y: auto;
        }

            .top-notifications .notif-panel .notif-list .notif-item[b-i9zx4wia8f] {
                padding: 0.45rem;
                border-radius: 8px;
                transition: background var(--tn-anim-fast) ease, transform var(--tn-anim-fast) ease;
            }

                .top-notifications .notif-panel .notif-list .notif-item.unread[b-i9zx4wia8f] {
                    background: linear-gradient(90deg, rgba(11,109,176,0.03), transparent);
                }

                .top-notifications .notif-panel .notif-list .notif-item.read[b-i9zx4wia8f] {
                    opacity: 0.85;
                }

                /* Notification link */
                .top-notifications .notif-panel .notif-list .notif-item .notif-link[b-i9zx4wia8f] {
                    display: flex;
                    gap: 0.75rem;
                    align-items: center;
                    text-decoration: none;
                    color: inherit;
                    padding: 0.45rem;
                    border-radius: 8px;
                }

                    .top-notifications .notif-panel .notif-list .notif-item .notif-link:hover[b-i9zx4wia8f] {
                        background: rgba(11,109,176,0.03);
                        transform: translateX(4px);
                    }

                /* Left avatar inside item */
                .top-notifications .notif-panel .notif-list .notif-item .notif-left .notif-avatar[b-i9zx4wia8f],
                .top-notifications .notif-panel .notif-list .notif-item .notif-left .notif-avatar.initials[b-i9zx4wia8f] {
                    width: 44px;
                    height: 44px;
                    border-radius: 8px;
                    object-fit: cover;
                    display: inline-block;
                    background: linear-gradient(180deg,#fff,#f2f7ff);
                    border: 1px solid rgba(2,6,23,0.04);
                    font-weight: 700;
                    color: var(--tn-accent);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }

                /* Body text */
                .top-notifications .notif-panel .notif-list .notif-item .notif-body[b-i9zx4wia8f] {
                    flex: 1 1 auto;
                    min-width: 0;
                }

                    .top-notifications .notif-panel .notif-list .notif-item .notif-body .notif-title[b-i9zx4wia8f] {
                        font-weight: 600;
                        font-size: 0.95rem;
                        margin-bottom: 0.18rem;
                        color: var(--tn-text);
                    }

                    .top-notifications .notif-panel .notif-list .notif-item .notif-body .notif-meta[b-i9zx4wia8f] {
                        font-size: 0.78rem;
                        color: var(--tn-muted);
                        display: flex;
                        gap: 0.4rem;
                        align-items: center;
                    }

                /* Right area */
                .top-notifications .notif-panel .notif-list .notif-item .notif-right[b-i9zx4wia8f] {
                    display: flex;
                    align-items: center;
                    gap: 0.5rem;
                    margin-left: 0.5rem;
                }

                    .top-notifications .notif-panel .notif-list .notif-item .notif-right .dot[b-i9zx4wia8f] {
                        width: 8px;
                        height: 8px;
                        background: #ff6b6b;
                        border-radius: 50%;
                    }

                    .top-notifications .notif-panel .notif-list .notif-item .notif-right .chev[b-i9zx4wia8f] {
                        color: #9aa4b2;
                        font-size: 1.1rem;
                    }

        /* Panel footer */
        .top-notifications .notif-panel .panel-footer[b-i9zx4wia8f] {
            padding: 0.6rem 1rem;
            border-top: 1px solid rgba(2,6,23,0.03);
            text-align: center;
        }

            .top-notifications .notif-panel .panel-footer .view-all[b-i9zx4wia8f] {
                color: var(--tn-accent);
                text-decoration: none;
                font-weight: 600;
            }

/* Small screens */
@media (max-width: 640px) {
    .top-notifications .notif-panel[b-i9zx4wia8f] {
        right: 8px;
        left: 8px;
        width: auto;
        top: calc(100% + 8px);
    }

    .top-notifications .actions .user-avatar[b-i9zx4wia8f] {
        width: 36px;
        height: 36px;
    }
}

/* Accessibility: reduce motion */
@media (prefers-reduced-motion: reduce) {
    .top-notifications *[b-i9zx4wia8f],
    .top-notifications *[b-i9zx4wia8f]::before,
    .top-notifications *[b-i9zx4wia8f]::after {
        transition: none !important;
        animation: none !important;
        transform: none !important;
    }
}

/* Screen reader helper */
.top-notifications .sr-only[b-i9zx4wia8f] {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
/* _content/TeamNotify/Components/Pages/cuentas/AssignRoles.razor.rz.scp.css */
// AssignRoles.styles.scss

$card-bg: #ffffff;
$muted: #6c757d;
$accent: #0d6efd;
$success: #198754;
$danger: #dc3545;
$role-badge-padding: 0.35rem 0.6rem;
$role-badge-radius: 0.5rem;

.assign-roles[b-zaqgbs4x0j] {
    padding: 1rem;
    border-radius: 0.5rem;
    background: $card-bg;
    .user-card

{
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    .avatar

{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.user-info[b-zaqgbs4x0j] {
    .fw-semibold

{
    font-size: 0.95rem;
}

.small[b-zaqgbs4x0j] {
    font-size: 0.8rem;
}

}
}

.roles-panel[b-zaqgbs4x0j] {
    min-height: 160px;
    .role-badge

{
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: $role-badge-padding;
    border-radius: $role-badge-radius;
    border: 1px solid rgba(0,0,0,0.06);
    background: #fff;
    color: #212529;
    transition: transform 0.08s ease, box-shadow 0.08s ease;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    i

{
    font-size: 0.95rem;
}

&.assigned[b-zaqgbs4x0j] {
    background: linear-gradient(180deg, rgba(25,135,84,0.12), rgba(25,135,84,0.06));
    border-color: rgba(25,135,84,0.25);
    color: $success;
    box-shadow: 0 2px 6px rgba(25,135,84,0.06);
}

&.unassigned[b-zaqgbs4x0j] {
    background: linear-gradient(180deg, rgba(13,110,253,0.03), rgba(13,110,253,0.01));
    border-color: rgba(13,110,253,0.06);
    color: $muted;
}

&:hover[b-zaqgbs4x0j] {
    transform: translateY(-2px);
}

}
}

.btn[b-zaqgbs4x0j] {
    &.btn-success

{
    background: $success;
    border-color: darken($success, 6%);
}

}

@media (max-width: 767.98px) {
    .user-card[b-zaqgbs4x0j] {
        .avatar

{
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
}

}

.roles-panel[b-zaqgbs4x0j] {
    .role-badge

{
    padding: 0.25rem 0.45rem;
    font-size: 0.9rem;
}

}
}
}

/* Estilos para SearchSelect */
.search-select[b-zaqgbs4x0j] {
    .search-select-list

{
    position: absolute;
    z-index: 1050;
    width: 100%;
    max-height: 280px;
    overflow: auto;
}

input.form-control[b-zaqgbs4x0j] {
    cursor: text;
}

.list-group-item[b-zaqgbs4x0j] {
    cursor: pointer;
}
}
/* _content/TeamNotify/Components/Pages/cuentas/DashboardHistoric.razor.rz.scp.css */
/*// DashboardHistoric.styles.scss

// Variables
$size-icon: 48px;
$font-icon: 1.25rem;
$gap-card: 0.5rem;

$color-recibido: #0d6efd;
$color-enproceso: #ffc107;
$color-terminado: #198754;
$color-sinasignar: #6c757d;
$color-empleados: #6c757d;
$color-clientes: #0dcaf0;

// Contenedor general del dashboard (opcional para encapsular estilos)
.dashboard-historic {
    .row

{
    margin-bottom: 1rem;
}

.card {
    border: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: transform 0.12s ease, box-shadow 0.12s ease;
    &:hover

{
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.card-body {
    &.d-flex

{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

}
}

// Icon circle base
.icon-circle {
    width: $size-icon;
    height: $size-icon;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: $font-icon;
    margin-bottom: $gap-card;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    &.icon-recibido

{
    background-color: $color-recibido;
}

&.icon-enproceso {
    background-color: $color-enproceso;
}

&.icon-terminado {
    background-color: $color-terminado;
}

&.icon-sinasignar {
    background-color: $color-sinasignar;
}

&.bg-secondary {
    background-color: #6c757d;
}

&.bg-info {
    background-color: $color-clientes;
}

}

// Texto de los totales (colores por estado)
.card-title {
    &.text-Recibido

{
    color: $color-recibido !important;
}

&.text-EnProceso {
    color: darken($color-enproceso, 8%) !important;
}

&.text-Terminado {
    color: $color-terminado !important;
}

&.text-SinAsignar {
    color: $color-sinasignar !important;
}

}

// Ajustes responsivos
@media (max-width: 767.98px) {
    .icon-circle

{
    width: 40px;
    height: 40px;
    font-size: 1.05rem;
}

.card-title {
    font-size: 1.25rem;
}

}

// Chart container tweaks
.card.mb-3 {
    .card-body

{
    h6

{
    margin-bottom: 0.5rem;
    font-weight: 600;
}

canvas {
    width: 100% !important;
    height: 300px !important;
}

}
}
}
*/

/* dashboard-historic.css
   Estilos unificados para DashboardHistoric. Incluye tipograf�a, tarjetas, iconos y charts. */

/* Tipograf�a: carga Inter en tu layout para que esto funcione bien:
   <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap" rel="stylesheet"> */



/* dashboard-historic.css
   Estilos unificados para DashboardHistoric con fuente local Inter */

/* 1. Font-face local
   Coloca los archivos en wwwroot/fonts/inter/
   - Inter-Regular.woff2
   - Inter-Medium.woff2
   - Inter-SemiBold.woff2
   - Inter-Bold.woff2
*/
@font-face {
    font-family: 'InterLocal';
    src: url('/fonts/inter/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'InterLocal';
    src: url('/fonts/inter/Inter-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'InterLocal';
    src: url('/fonts/inter/Inter-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'InterLocal';
    src: url('/fonts/inter/Inter-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Variables CSS */
:root[b-umu1uqkyxi] {
    --size-icon: 56px;
    --font-icon: 1.35rem;
    --gap-card: 0.6rem;
    --color-recibido: #0d6efd;
    --color-enproceso: #ffb020;
    --color-terminado: #16a34a;
    --color-sinasignar: #6c757d;
    --color-clientes: #0dcaf0;
    --card-bg: #ffffff;
    --card-radius: 12px;
    --card-shadow: 0 10px 30px rgba(2,6,23,0.06);
    --muted: #6b7280;
    --text-color: #0f172a;
    --anim-fast: 160ms;
    --anim-medium: 360ms;
    --anim-slow: 720ms;
    --ui-font-stack: 'InterLocal', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Ra�z del dashboard */
.dashboard-historic[b-umu1uqkyxi] {
    font-family: var(--ui-font-stack);
    color: var(--text-color);
    padding-bottom: 0.5rem;
}

    /* Row spacing */
    .dashboard-historic .row[b-umu1uqkyxi] {
        margin-bottom: 1rem;
    }

    /* Cards */
    .dashboard-historic .card[b-umu1uqkyxi] {
        background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,250,252,0.98));
        border: none;
        border-radius: var(--card-radius);
        box-shadow: var(--card-shadow);
        transition: transform var(--anim-fast) ease, box-shadow var(--anim-fast) ease, filter var(--anim-fast) ease;
        overflow: hidden;
        will-change: transform;
        opacity: 0;
        transform: translateY(10px);
        animation: cardIn-b-umu1uqkyxi var(--anim-medium) cubic-bezier(.2,.9,.3,1) forwards;
    }

@keyframes cardIn-b-umu1uqkyxi {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger delays for up to 6 cards */
.dashboard-historic .row > .col-md-2 > .card[b-umu1uqkyxi] {
    animation-delay: 0.06s;
}

.dashboard-historic .row > .col-md-2:nth-child(2) > .card[b-umu1uqkyxi] {
    animation-delay: 0.12s;
}

.dashboard-historic .row > .col-md-2:nth-child(3) > .card[b-umu1uqkyxi] {
    animation-delay: 0.18s;
}

.dashboard-historic .row > .col-md-2:nth-child(4) > .card[b-umu1uqkyxi] {
    animation-delay: 0.24s;
}

.dashboard-historic .row > .col-md-2:nth-child(5) > .card[b-umu1uqkyxi] {
    animation-delay: 0.30s;
}

.dashboard-historic .row > .col-md-2:nth-child(6) > .card[b-umu1uqkyxi] {
    animation-delay: 0.36s;
}

/* Card hover */
.dashboard-historic .card:hover[b-umu1uqkyxi] {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(2,6,23,0.08);
    filter: saturate(1.02);
}

/* Card body */
.dashboard-historic .card .card-body.d-flex[b-umu1uqkyxi] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.15rem;
}

/* Subtitles and titles */
.dashboard-historic .card-subtitle[b-umu1uqkyxi] {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 0.25rem;
    letter-spacing: 0.01em;
}

.dashboard-historic .card-title[b-umu1uqkyxi] {
    font-size: 1.45rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

/* Icon circle base */
.dashboard-historic .icon-circle[b-umu1uqkyxi] {
    width: var(--size-icon);
    height: var(--size-icon);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-icon);
    margin-bottom: var(--gap-card);
    box-shadow: 0 6px 18px rgba(2,6,23,0.06);
    color: #fff;
    transition: transform var(--anim-fast) ease, box-shadow var(--anim-fast) ease, filter var(--anim-fast) ease;
    will-change: transform;
    animation: iconPulse-b-umu1uqkyxi var(--anim-slow) ease-in-out infinite;
}

@keyframes iconPulse-b-umu1uqkyxi {
    0% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-3px) scale(1.02);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

/* State colors (degradados sutiles) */
.dashboard-historic .icon-recibido[b-umu1uqkyxi] {
    background: linear-gradient(180deg, var(--color-recibido), #0a58ca);
}

.dashboard-historic .icon-enproceso[b-umu1uqkyxi] {
    background: linear-gradient(180deg, var(--color-enproceso), #e09b1a);
    color: #111;
}

.dashboard-historic .icon-terminado[b-umu1uqkyxi] {
    background: linear-gradient(180deg, var(--color-terminado), #13803d);
}

.dashboard-historic .icon-sinasignar[b-umu1uqkyxi] {
    background: linear-gradient(180deg, var(--color-sinasignar), #5a6268);
}

.dashboard-historic .bg-secondary[b-umu1uqkyxi] {
    background: linear-gradient(180deg, #6c757d, #5a6268);
}

.dashboard-historic .bg-info[b-umu1uqkyxi] {
    background: linear-gradient(180deg, var(--color-clientes), #0aa7d8);
    color: #04263a;
}

/* Icon hover */
.dashboard-historic .icon-circle:hover[b-umu1uqkyxi] {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 20px 40px rgba(2,6,23,0.10);
    filter: saturate(1.05);
}

/* Text color helpers (map to your GetStateTextColor outputs) */
.dashboard-historic .text-primary[b-umu1uqkyxi] {
    color: var(--color-recibido) !important;
}

.dashboard-historic .text-warning[b-umu1uqkyxi] {
    color: #b36b00 !important;
}

.dashboard-historic .text-success[b-umu1uqkyxi] {
    color: var(--color-terminado) !important;
}

.dashboard-historic .text-secondary[b-umu1uqkyxi] {
    color: var(--color-sinasignar) !important;
}

/* Chart card tweaks */
.dashboard-historic .card.mb-3 .card-body h6[b-umu1uqkyxi] {
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.dashboard-historic .card.mb-3 .card-body canvas[b-umu1uqkyxi] {
    width: 100% !important;
    height: 300px !important;
    display: block;
    opacity: 0;
    transform: translateY(8px);
    animation: chartIn-b-umu1uqkyxi var(--anim-medium) cubic-bezier(.2,.9,.3,1) forwards;
}

@keyframes chartIn-b-umu1uqkyxi {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Chart tooltip helper (if you implement external tooltip) */
.dashboard-historic .chartjs-tooltip[b-umu1uqkyxi] {
    background: rgba(2,6,23,0.95);
    color: #fff;
    padding: 0.45rem 0.6rem;
    border-radius: 6px;
    font-size: 0.85rem;
    box-shadow: 0 8px 24px rgba(2,6,23,0.18);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .dashboard-historic .icon-circle[b-umu1uqkyxi] {
        width: 44px;
        height: 44px;
        font-size: 1.05rem;
    }

    .dashboard-historic .card-title[b-umu1uqkyxi] {
        font-size: 1.25rem;
    }

    .dashboard-historic .card[b-umu1uqkyxi] {
        padding: 0.6rem;
    }

    .dashboard-historic .row[b-umu1uqkyxi] {
        margin-bottom: 0.75rem;
    }
}

/* Accessibility: reduce motion */
@media (prefers-reduced-motion: reduce) {
    .dashboard-historic *[b-umu1uqkyxi] {
        animation: none !important;
        transition: none !important;
    }
}
/* _content/TeamNotify/Components/Pages/cuentas/Ticket.razor.rz.scp.css */
/* Ticket.razor.css - Estilos mejorados y visibles */

.enhanced-report-wrapper[b-uu54kou1hk] {
    max-width: 1100px;
    margin: 1.5rem auto;
    padding: 1rem;
}

.enhanced-report-card[b-uu54kou1hk] {
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,252,255,0.98));
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(11, 35, 70, 0.08);
    padding: 18px;
    border: 1px solid rgba(13,110,253,0.06);
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease;
}

    .enhanced-report-card:hover[b-uu54kou1hk] {
        transform: translateY(-4px);
        box-shadow: 0 26px 60px rgba(11,35,70,0.12);
    }

.enhanced-header[b-uu54kou1hk] {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.badge[b-uu54kou1hk] {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: linear-gradient(135deg,#0d6efd,#6f9cff);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(13,110,253,0.12);
}

.title[b-uu54kou1hk] {
    margin: 0;
    font-size: 1.15rem;
    color: #0b3a66;
    font-weight: 700;
}

.subtitle[b-uu54kou1hk] {
    margin: 0;
    color: #55607a;
    font-size: 0.95rem;
}

.status-pill[b-uu54kou1hk] {
    margin-left: auto;
    background: linear-gradient(90deg,#eef6ff,#f7fbff);
    color: #0b3a66;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid rgba(13,110,253,0.06);
    font-size: 0.85rem;
}

/* Body layout */
.enhanced-body[b-uu54kou1hk] {
    display: block;
}

/* Loading panel */
.loading-panel[b-uu54kou1hk] {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 18px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(13,110,253,0.03), rgba(111,156,255,0.01));
    border: 1px dashed rgba(13,110,253,0.06);
}

.spinner-wrap[b-uu54kou1hk] {
    width: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner-animated[b-uu54kou1hk] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: conic-gradient(#0d6efd 0 25%, transparent 25% 100%);
    position: relative;
    animation: spin-b-uu54kou1hk 1s linear infinite;
}

@keyframes spin-b-uu54kou1hk {
    to {
        transform: rotate(360deg);
    }
}

.loading-texts[b-uu54kou1hk] {
    flex: 1;
}

.loading-title[b-uu54kou1hk] {
    font-weight: 700;
    color: #0b3a66;
    margin-bottom: 4px;
}

.loading-sub[b-uu54kou1hk] {
    color: #6b7280;
    margin-bottom: 10px;
}

/* Progress bar */
.progress-sim[b-uu54kou1hk] {
    height: 8px;
    background: #e9f2ff;
    border-radius: 999px;
    overflow: hidden;
    width: 100%;
}

    .progress-sim > i[b-uu54kou1hk] {
        display: block;
        height: 100%;
        width: 30%;
        background: linear-gradient(90deg,#0d6efd,#6f9cff);
        transform: translateX(-100%);
        animation: slide-b-uu54kou1hk 2.2s linear infinite;
    }

@keyframes slide-b-uu54kou1hk {
    to {
        transform: translateX(300%);
    }
}

/* PDF area */
.pdf-area[b-uu54kou1hk] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pdf-actions[b-uu54kou1hk] {
    display: flex;
    gap: 8px;
    align-items: center;
}

.btn[b-uu54kou1hk] {
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.btn-primary[b-uu54kou1hk] {
    background: #0d6efd;
    color: #fff;
    border: none;
}

.btn-outline-secondary[b-uu54kou1hk] {
    background: transparent;
    border: 1px solid rgba(11,35,70,0.06);
    color: #0b3a66;
}

/* Iframe styling with fade-in */
.iframe-wrap[b-uu54kou1hk] {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11,35,70,0.06);
}

.pdf-frame[b-uu54kou1hk] {
    width: 100%;
    height: 640px;
    border: 0;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .35s ease, transform .35s ease;
}

    .pdf-frame[title][b-uu54kou1hk] { /* when present, animate in */
    }

    .pdf-frame.loaded[b-uu54kou1hk] {
        opacity: 1;
        transform: translateY(0);
    }

/* Error panel */
.error-panel[b-uu54kou1hk] {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 10px;
    background: #fff5f5;
    border: 1px solid #ffd6d6;
    color: #7a1f1f;
}

.error-icon[b-uu54kou1hk] {
    width: 40px;
    height: 40px;
    background: #fff0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b91c1c;
    font-weight: 700;
}

.error-msg[b-uu54kou1hk] {
    margin-top: 6px;
    color: #7a1f1f;
}

.error-actions[b-uu54kou1hk] {
    margin-top: 8px;
}

/* Responsive */
@media (max-width:720px) {
    .pdf-frame[b-uu54kou1hk] {
        height: 520px;
    }

    .badge[b-uu54kou1hk] {
        width: 48px;
        height: 48px;
        font-size: 0.95rem;
    }

    .loading-panel[b-uu54kou1hk] {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
/* _content/TeamNotify/Components/Pages/cuentas/Trabajos.razor.rz.scp.css */
/* ------------------------- Panel de filtros (scoped) ------------------------- */ /* Contenedor principal del panel de filtros */

.filters-panel[b-v0vpy3mo7i], .card.filters-panel[b-v0vpy3mo7i] {
    border: 0;
    box-shadow: 0 0 0 rgba(0,0,0,0);
    background: transparent;
    padding: 0;
}
    /* Cuerpo del panel: espaciado y alineaci�n */

    .filters-panel .card-body[b-v0vpy3mo7i], .card.filters-panel .card-body[b-v0vpy3mo7i] {
        padding: 0.5rem 0.75rem;
    }
/* Contenedor de controles: transici�n para show/hide en m�vil */

.filters-container[b-v0vpy3mo7i] {
    transition: max-height 0.28s ease, opacity 0.28s ease;
    overflow: hidden;
}
/* En pantallas md+ siempre visible */

@media (min-width: 768px) {
    .filters-container[b-v0vpy3mo7i] {
        display: block !important;
        max-height: 2000px;
        opacity: 1;
    }
}
/* En pantallas peque�as: oculto por defecto, se muestra con clase .show-on-mobile */

@media (max-width: 767.98px) {
    .filters-container.hide-on-mobile[b-v0vpy3mo7i] {
        display: none;
        max-height: 0;
        opacity: 0;
    }

    .filters-container.show-on-mobile[b-v0vpy3mo7i] {
        display: block;
        max-height: 1200px;
        opacity: 1;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    /* Que los inputs ocupen todo el ancho en m�vil */

    .filters-panel .form-select[b-v0vpy3mo7i], .filters-panel .btn[b-v0vpy3mo7i], .filters-panel .form-check[b-v0vpy3mo7i] {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .filters-panel .form-check-inline[b-v0vpy3mo7i] {
        display: block;
        margin-right: 0;
    }
}
/* Ajustes para pantallas grandes: controles en l�nea y con separaci�n */

@media (min-width: 768px) {
    .filters-panel .form-check[b-v0vpy3mo7i] {
        margin-right: 0.5rem;
    }

    .filters-panel .form-check-inline[b-v0vpy3mo7i] {
        margin-right: 0.75rem;
    }
}
/* Limitar altura de la lista de estados si hay muchos */

.filters-panel .mb-2[b-v0vpy3mo7i] {
    max-height: 36vh;
    overflow: auto;
    padding-right: 0.25rem;
}
/* ------------------------- Modales renderizados sin JS ------------------------- */ /* Backdrop cuando renderizamos modal con Blazor (sin bootstrap.js) */

.modal-backdrop.d-block[b-v0vpy3mo7i] {
    position: fixed;
    inset: 0;
    z-index: 1040;
    background: rgba(0,0,0,0.5);
}
/* Modal principal cuando se renderiza con display:block */

.modal.d-block[b-v0vpy3mo7i] {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
/* Dialog responsive: full screen en pantallas peque�as */

.modal-dialog.modal-fullscreen-sm-down[b-v0vpy3mo7i] {
    width: 100%;
    margin: 0;
    max-width: 100%;
}
/* Limitar ancho en pantallas grandes */

.modal-dialog.modal-lg[b-v0vpy3mo7i] {
    max-width: 900px;
}
/* Contenido del modal con scroll interno */

.modal-content[b-v0vpy3mo7i] {
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
/* Cuerpo del modal con scroll si es necesario */

.modal-body[b-v0vpy3mo7i] {
    overflow: auto;
    padding: 1rem;
}
/* ------------------------- Selecci�n de usuario ------------------------- */ /* Clase aplicada al item seleccionado en la lista de usuarios */

.selected-user[b-v0vpy3mo7i], .list-group-item.selected-user[b-v0vpy3mo7i] {
    background-color: #0d6efd !important; /* azul bootstrap */
    color: #fff !important;
    border-color: #0d6efd !important;
}
    /* Badge para el seleccionado */

    .selected-user .badge[b-v0vpy3mo7i] {
        background: #ffffffcc;
        color: #0d6efd;
        font-weight: 600;
    }
/* ------------------------- Alertas y pies de tarjeta ------------------------- */ /* Alerta compacta dentro de la tarjeta */

.trabajo-alert[b-v0vpy3mo7i] {
    padding: 0.45rem 0.6rem;
    border-radius: 0.35rem;
    font-size: 0.85rem;
}
    /* Colores m�s suaves para alertas dentro de la tarjeta */

    .trabajo-alert.info[b-v0vpy3mo7i] {
        background: #e9f5ff;
        color: #0b5ed7;
        border: 1px solid #cfe8ff;
    }

    .trabajo-alert.success[b-v0vpy3mo7i] {
        background: #e9fbe9;
        color: #198754;
        border: 1px solid #d1f3d1;
    }

    .trabajo-alert.danger[b-v0vpy3mo7i] {
        background: #fff0f0;
        color: #dc3545;
        border: 1px solid #ffd6d6;
    }
/* ------------------------- Utilidades y accesibilidad ------------------------- */ /* Forzar que botones peque�os mantengan altura consistente */

.btn-sm[b-v0vpy3mo7i] {
    line-height: 1.2;
}
/* Mejor contraste para badges en encabezado dorado */

.card-header.text-dark[style*="#D4AF37"] .badge[b-v0vpy3mo7i] {
    background: rgba(0,0,0,0.08);
    color: #000;
}
/* Peque�o ajuste para evitar overflow horizontal en m�viles */

body[b-v0vpy3mo7i], .container[b-v0vpy3mo7i], .row[b-v0vpy3mo7i] {
    -webkit-overflow-scrolling: touch;
}

/* Backdrop cuando renderizamos modal sin bootstrap.js */
.modal-backdrop.d-block[b-v0vpy3mo7i] {
    position: fixed;
    inset: 0;
    z-index: 1040;
    background: rgba(0,0,0,0.5);
}

/* Contenedor modal: usar flexbox para centrar el dialog */
.modal.d-block[b-v0vpy3mo7i] {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: flex;
    align-items: center; /* centra verticalmente */
    justify-content: center; /* centra horizontalmente */
    padding: 1rem;
    overflow: auto; /* permite scroll si la pantalla es peque�a */
}

/* Dialog responsive: mantener tama�o y centrado */
.modal-dialog[b-v0vpy3mo7i] {
    margin: 0; /* eliminar m�rgenes por defecto */
    max-width: 900px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    /* Opcional: dialog full screen en pantallas peque�as */
    .modal-dialog.modal-fullscreen-sm-down[b-v0vpy3mo7i] {
        width: 100%;
        max-width: 100%;
        height: 100%;
        margin: 0;
    }

/* Contenido del modal con scroll interno y altura limitada */
.modal-content[b-v0vpy3mo7i] {
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 0.5rem;
}

/* Cuerpo del modal con scroll si el contenido excede */
.modal-body[b-v0vpy3mo7i] {
    overflow: auto;
    padding: 1rem;
}

/* Asegurar que el header y footer no colapsen al centrar */
.modal-header[b-v0vpy3mo7i],
.modal-footer[b-v0vpy3mo7i] {
    flex: 0 0 auto;
}

/* Ajuste para que el dialog no se pegue a los bordes en m�viles */
@media (max-width: 576px) {
    .modal.d-block[b-v0vpy3mo7i] {
        padding: 0.5rem;
        align-items: flex-start; /* si prefieres que no quede exactamente en el centro vertical en m�viles, cambia a flex-start */
    }

    .modal-dialog.modal-fullscreen-sm-down .modal-content[b-v0vpy3mo7i] {
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
    }
}
/* _content/TeamNotify/Components/Pages/empresa/EmpresaEditor.razor.rz.scp.css */
.empresa-card[b-639xespwpq] {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbff 100%);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(20, 30, 60, 0.06);
    align-items: start;
    font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Logo column */
.logo-column[b-639xespwpq] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-box[b-639xespwpq] {
    width: 280px;
    height: 280px;
    border-radius: 10px;
    border: 2px dashed #e6e9f2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #ffffff, #f7f9ff);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

    .logo-box:hover[b-639xespwpq] {
        transform: translateY(-4px);
        box-shadow: 0 10px 30px rgba(20, 30, 60, 0.08);
    }

.logo-placeholder[b-639xespwpq] {
    text-align: center;
    color: #6b7280;
    padding: 12px;
}

.placeholder-icon[b-639xespwpq] {
    width: 64px;
    height: 64px;
    color: #9aa3c7;
    margin-bottom: 10px;
}

.placeholder-text[b-639xespwpq] {
    font-weight: 600;
    color: #374151;
    margin-bottom: 4px;
}

.placeholder-sub[b-639xespwpq] {
    font-size: 12px;
    color: #9aa3c7;
}

/* Preview */
.logo-preview[b-639xespwpq] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #fff;
}

/* Loading overlay */
.logo-loading[b-639xespwpq] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #374151;
}

.spinner[b-639xespwpq] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 5px solid rgba(99, 102, 241, 0.12);
    border-top-color: #6366f1;
    animation: spin-b-639xespwpq 1s linear infinite;
}

.loading-text[b-639xespwpq] {
    font-size: 14px;
    color: #4b5563;
}

/* Form column */
.form-column[b-639xespwpq] {
    padding: 6px 4px;
}

.title[b-639xespwpq] {
    margin: 0 0 12px 0;
    font-size: 20px;
    color: #111827;
    font-weight: 700;
}

.form-grid[b-639xespwpq] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.form-group[b-639xespwpq] {
    display: flex;
    flex-direction: column;
}

    .form-group.full[b-639xespwpq] {
        grid-column: 1 / -1;
    }

.input[b-639xespwpq] {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #e6e9f2;
    background: #fff;
    color: #111827;
    outline: none;
    transition: box-shadow 120ms ease, border-color 120ms ease;
}

    .input:focus[b-639xespwpq] {
        box-shadow: 0 6px 18px rgba(99, 102, 241, 0.12);
        border-color: #6366f1;
    }

.textarea[b-639xespwpq] {
    min-height: 84px;
    resize: vertical;
}

/* Actions */
.actions[b-639xespwpq] {
    margin-top: 16px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn[b-639xespwpq] {
    padding: 10px 16px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .btn.primary[b-639xespwpq] {
        background: linear-gradient(90deg, #6366f1, #7c3aed);
        color: white;
        box-shadow: 0 8px 20px rgba(99, 102, 241, 0.18);
    }

    .btn.ghost[b-639xespwpq] {
        background: transparent;
        border: 1px solid #e6e9f2;
        color: #374151;
    }

    .btn:disabled[b-639xespwpq] {
        opacity: 0.6;
        cursor: not-allowed;
    }

.btn-spinner[b-639xespwpq] {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    animation: spin-b-639xespwpq 0.9s linear infinite;
}

/* Messages */
.success[b-639xespwpq] {
    color: #065f46;
    background: #ecfdf5;
    padding: 8px 12px;
    border-radius: 8px;
    margin-left: 8px;
}

.error[b-639xespwpq] {
    color: #7f1d1d;
    background: #fff1f2;
    padding: 8px 12px;
    border-radius: 8px;
    margin-left: 8px;
}

.hint[b-639xespwpq] {
    margin-top: 10px;
    font-size: 13px;
    color: #6b7280;
}

/* Responsive */
@media (max-width: 900px) {
    .empresa-card[b-639xespwpq] {
        grid-template-columns: 1fr;
    }

    .logo-box[b-639xespwpq] {
        width: 100%;
        height: 220px;
    }

    .form-grid[b-639xespwpq] {
        grid-template-columns: 1fr;
    }
}

@keyframes spin-b-639xespwpq {
    to {
        transform: rotate(360deg);
    }
}
/* _content/TeamNotify/Components/Pages/SearchSelect.razor.rz.scp.css */
.search-select[b-6prhzb8ona] {
    position: relative;
}

.search-select-list[b-6prhzb8ona] {
    position: absolute;
    z-index: 2050;
    left: 0;
    right: 0;
    max-height: 40vh;
    overflow: auto;
}

.search-select .list-group-item[b-6prhzb8ona] {
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
