/* /Components/Layout/LandingLayout.razor.rz.scp.css */
/* Header */
.landing-header[b-8kh61dwyju] {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 17, 23, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.landing-header-inner[b-8kh61dwyju] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.landing-brand[b-8kh61dwyju] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
}

.landing-brand:hover[b-8kh61dwyju] {
    color: var(--text-primary);
}

.landing-brand-icon[b-8kh61dwyju] {
    font-size: 1.4rem;
    filter: drop-shadow(0 0 8px var(--accent));
}

.landing-nav[b-8kh61dwyju] {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.landing-nav a[b-8kh61dwyju] {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.landing-nav a:hover[b-8kh61dwyju] {
    color: var(--text-primary);
}

.landing-nav .landing-nav-account[b-8kh61dwyju] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.7rem;
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 6px;
    background: rgba(148, 163, 184, 0.08);
    color: var(--text-primary);
}

.landing-nav .landing-nav-account:hover[b-8kh61dwyju] {
    border-color: var(--brand-cyan);
    background: rgba(6, 182, 212, 0.1);
    color: var(--brand-cyan);
}

.landing-nav .landing-nav-cta[b-8kh61dwyju] {
    color: #fff;
}

.landing-nav-toggle[b-8kh61dwyju] {
    display: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.25rem 0.5rem;
}

.landing-nav-checkbox[b-8kh61dwyju] {
    display: none;
}

/* Footer */
.landing-footer[b-8kh61dwyju] {
    border-top: 1px solid var(--border-color);
    background: var(--bg-secondary);
    margin-top: 4rem;
}

.landing-footer-inner[b-8kh61dwyju] {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.landing-footer-brand-head[b-8kh61dwyju] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.landing-footer-brand strong[b-8kh61dwyju] {
    font-size: 1.1rem;
}

.landing-footer-brand p[b-8kh61dwyju] {
    color: var(--text-secondary);
    margin: 0.75rem 0 0;
    max-width: 360px;
    font-size: 0.9rem;
}

.landing-footer-links h4[b-8kh61dwyju] {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.landing-footer-links a[b-8kh61dwyju] {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 0.25rem 0;
}

.landing-footer-links a:hover[b-8kh61dwyju] {
    color: var(--text-primary);
}

.landing-footer-bottom[b-8kh61dwyju] {
    border-top: 1px solid var(--border-color);
    text-align: center;
    padding: 1.25rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Responsive nav */
@media (max-width: 860px) {
    .landing-nav-toggle[b-8kh61dwyju] {
        display: block;
    }

    .landing-nav[b-8kh61dwyju] {
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--bg-secondary);
        border-bottom: 1px solid var(--border-color);
        padding: 0.5rem 1.5rem 1rem;
        display: none;
    }

    .landing-nav-checkbox:checked ~ .landing-header .landing-nav[b-8kh61dwyju] {
        display: flex;
    }

    .landing-nav a[b-8kh61dwyju] {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .landing-nav .landing-nav-account[b-8kh61dwyju] {
        margin: 0.4rem 0;
        padding: 0.7rem 0.75rem;
        border: 1px solid rgba(148, 163, 184, 0.3);
    }

    .landing-nav .landing-nav-cta[b-8kh61dwyju] {
        margin-top: 0.75rem;
        text-align: center;
        justify-content: center;
    }

    .landing-footer-inner[b-8kh61dwyju] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* Layout */
.app-layout[b-wnvd8ajqw4] {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar[b-wnvd8ajqw4] {
    width: var(--sidebar-width);
    background: var(--bg-secondary);
    border-right: 1px solid var(--border-color);
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    overflow-y: auto;
    transition: transform 0.25s ease;
}

.sidebar-close[b-wnvd8ajqw4],
.sidebar-backdrop[b-wnvd8ajqw4] {
    display: none;
}

.main-area[b-wnvd8ajqw4] {
    flex: 1;
    margin-left: var(--sidebar-width);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    transition: margin-left 0.25s ease;
}

.topbar[b-wnvd8ajqw4] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    padding: 0 1.5rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 50;
}

.topbar-left[b-wnvd8ajqw4] {
    display: flex;
    align-items: center;
}

.topbar-right[b-wnvd8ajqw4] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.topbar-user[b-wnvd8ajqw4] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.topbar-link[b-wnvd8ajqw4] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    white-space: nowrap;
}

.topbar-link:hover[b-wnvd8ajqw4] {
    color: var(--text-primary);
    border-color: var(--text-muted);
}
.pwa-action[b-wnvd8ajqw4] {
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0 0.7rem;
    color: var(--text-secondary);
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.28);
    border-radius: 8px;
    font: inherit;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
}

.pwa-action:hover[b-wnvd8ajqw4] {
    color: var(--text-primary);
    background: rgba(14, 165, 233, 0.15);
    border-color: var(--accent);
}

.pwa-action:disabled[b-wnvd8ajqw4] {
    opacity: 0.6;
    cursor: wait;
}

.pwa-status[b-wnvd8ajqw4] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 36px;
    padding: 0.45rem 1rem;
    color: var(--text-secondary);
    background: #172337;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.82rem;
}

.pwa-status button[b-wnvd8ajqw4] {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: var(--text-secondary);
    background: transparent;
    border: 0;
    cursor: pointer;
}

.sidebar-toggle[b-wnvd8ajqw4] {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
}

.main-content[b-wnvd8ajqw4] {
    flex: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 3rem;
}

@media (max-width: 1024px) {
    .main-content[b-wnvd8ajqw4] {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .sidebar[b-wnvd8ajqw4] {
        transform: translateX(-100%);
        box-shadow: 8px 0 28px rgba(0, 0, 0, 0.35);
    }

    .app-layout.sidebar-open .sidebar[b-wnvd8ajqw4] {
        transform: translateX(0);
    }

    .sidebar-close[b-wnvd8ajqw4] {
        position: absolute;
        top: 0.75rem;
        right: 0.75rem;
        z-index: 2;
        width: 36px;
        height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        color: var(--text-secondary);
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--border-color);
        border-radius: 7px;
        cursor: pointer;
    }

    .sidebar-backdrop[b-wnvd8ajqw4] {
        position: fixed;
        inset: 0;
        z-index: 90;
        width: 100%;
        height: 100%;
        padding: 0;
        background: rgba(5, 8, 14, 0.62);
        border: 0;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
    }

    .app-layout.sidebar-open .sidebar-backdrop[b-wnvd8ajqw4] {
        display: block;
        opacity: 1;
        pointer-events: auto;
    }

    .main-area[b-wnvd8ajqw4] {
        margin-left: 0;
    }

    .sidebar-toggle[b-wnvd8ajqw4] {
        display: block;
    }

    .main-content[b-wnvd8ajqw4] {
        padding: 1rem;
    }

    .topbar[b-wnvd8ajqw4] {
        padding: 0 0.75rem;
    }

    .topbar-right[b-wnvd8ajqw4] {
        gap: 0.45rem;
    }

    .pwa-action[b-wnvd8ajqw4] {
        width: 34px;
        padding: 0;
    }

    .pwa-action span[b-wnvd8ajqw4],
    .topbar-link span[b-wnvd8ajqw4],
    .topbar-user[b-wnvd8ajqw4] {
        display: none;
    }
}

/* Notifications Bell & Badges */
.notifications-container[b-wnvd8ajqw4] {
    position: relative;
    display: inline-block;
}

.notifications-bell[b-wnvd8ajqw4] {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
    padding: 0.5rem;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.notifications-bell:hover[b-wnvd8ajqw4] {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.bell-icon-custom[b-wnvd8ajqw4] {
    transform: rotate(0deg);
}

.notifications-bell:hover .bell-icon-custom[b-wnvd8ajqw4] {
    animation: ringBell-b-wnvd8ajqw4 0.4s ease;
}

@keyframes ringBell-b-wnvd8ajqw4 {
    0% { transform: rotate(0); }
    15% { transform: rotate(10deg); }
    30% { transform: rotate(-10deg); }
    45% { transform: rotate(5deg); }
    60% { transform: rotate(-5deg); }
    75% { transform: rotate(2deg); }
    100% { transform: rotate(0); }
}

.notifications-badge[b-wnvd8ajqw4] {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #ef4444;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 14px;
    height: 14px;
    padding: 0 3px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(25%, -25%);
    box-shadow: 0 0 0 2px var(--bg-secondary);
}

/* Dropdown Overlay */
.dropdown-overlay[b-wnvd8ajqw4] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: transparent;
    z-index: 998;
}

/* Dropdown Card */
.notifications-dropdown[b-wnvd8ajqw4] {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 320px;
    background: #1e2530;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.5);
    z-index: 999;
    overflow: hidden;
    animation: slideInDown-b-wnvd8ajqw4 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideInDown-b-wnvd8ajqw4 {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.notifications-header[b-wnvd8ajqw4] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
}

.notifications-header h4[b-wnvd8ajqw4] {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.btn-text-only[b-wnvd8ajqw4] {
    background: none;
    border: none;
    color: #3b82f6;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    transition: color 0.15s ease;
}

.btn-text-only:hover[b-wnvd8ajqw4] {
    color: #60a5fa;
    text-decoration: underline;
}

.notifications-list[b-wnvd8ajqw4] {
    max-height: 360px;
    overflow-y: auto;
}

/* Custom Scrollbar for Notifications List */
.notifications-list[b-wnvd8ajqw4]::-webkit-scrollbar {
    width: 6px;
}
.notifications-list[b-wnvd8ajqw4]::-webkit-scrollbar-track {
    background: transparent;
}
.notifications-list[b-wnvd8ajqw4]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}
.notifications-list[b-wnvd8ajqw4]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

.notification-item[b-wnvd8ajqw4] {
    display: flex;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: background 0.15s ease;
}

.notification-item:last-child[b-wnvd8ajqw4] {
    border-bottom: none;
}

.notification-item:hover[b-wnvd8ajqw4] {
    background: rgba(255, 255, 255, 0.03);
}

.notification-item.unread[b-wnvd8ajqw4] {
    background: rgba(59, 130, 246, 0.06);
}

.notification-item.unread:hover[b-wnvd8ajqw4] {
    background: rgba(59, 130, 246, 0.1);
}

.notification-icon-wrapper[b-wnvd8ajqw4] {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-icon-wrapper.exito[b-wnvd8ajqw4] {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.notification-icon-wrapper.advertencia[b-wnvd8ajqw4] {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.notification-icon-wrapper.error[b-wnvd8ajqw4] {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.notification-icon-wrapper.info[b-wnvd8ajqw4] {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.notification-info[b-wnvd8ajqw4] {
    flex: 1;
    min-width: 0;
}

.notification-title[b-wnvd8ajqw4] {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
}

.notification-desc[b-wnvd8ajqw4] {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.35;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notification-time[b-wnvd8ajqw4] {
    font-size: 0.65rem;
    color: #6b7280;
}

.notifications-empty[b-wnvd8ajqw4] {
    padding: 2.5rem 1rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.sidebar-header[b-mvlzg6om5j] {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.brand[b-mvlzg6om5j] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--text-primary);
}

.brand-icon[b-mvlzg6om5j] {
    font-size: 1.4rem;
}

.brand-text[b-mvlzg6om5j] {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.sidebar-nav[b-mvlzg6om5j] {
    padding: 0.5rem 0;
}

.nav-section[b-mvlzg6om5j] {
    padding: 0.5rem 0;
}

.nav-section-title[b-mvlzg6om5j] {
    display: block;
    padding: 0.25rem 1.25rem 0.4rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
}

[b-mvlzg6om5j] .nav-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 1.25rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 400;
    border-radius: 0;
    transition: all 0.15s;
    text-decoration: none;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

[b-mvlzg6om5j] .nav-link:hover {
    color: var(--text-primary);
    background: rgba(99, 102, 241, 0.06);
}

[b-mvlzg6om5j] .nav-link.active {
    color: var(--accent);
    background: var(--accent-bg);
    font-weight: 500;
    border-right: 3px solid var(--accent);
}

.nav-icon[b-mvlzg6om5j] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    flex-shrink: 0;
}

.nav-logout[b-mvlzg6om5j] {
    color: var(--text-secondary);
    font-family: inherit;
}

.nav-logout:hover[b-mvlzg6om5j] {
    color: var(--danger);
}
