/* _content/HomePulse/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-7xn59qe3mt] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-7xn59qe3mt] {
    flex: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.sidebar[b-7xn59qe3mt] {
    background-image: linear-gradient(180deg, #1E3A8A 0%, #4C1D95 70%);
    box-shadow: 4px 0 16px rgba(0, 0, 0, 0.05);
}

.top-row[b-7xn59qe3mt] {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    justify-content: flex-end;
    height: 3.75rem;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-row-right[b-7xn59qe3mt] {
    display: flex;
    align-items: center;
}

.header-tour-btn[b-7xn59qe3mt] {
    background: rgba(37, 99, 235, 0.08);
    color: #2563EB;
    border: 1px solid rgba(37, 99, 235, 0.15);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 12px;
    transition: all 0.2s ease;
}

.header-tour-btn:hover[b-7xn59qe3mt] {
    background: #2563EB;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
    transform: translateY(-1px);
    border-color: #2563EB;
}

.header-tour-btn:active[b-7xn59qe3mt] {
    transform: translateY(0);
}

.tour-btn-icon[b-7xn59qe3mt] {
    font-size: 14px;
}

/* Bottom Navigation Bar for Mobile */
.bottom-nav[b-7xn59qe3mt] {
    display: none;
}

.bottom-nav-item[b-7xn59qe3mt] {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    width: 100%;
    gap: 8px;
}

.bottom-nav-icon[b-7xn59qe3mt] {
    font-size: 18px;
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bottom-nav-label[b-7xn59qe3mt] {
    letter-spacing: 0.3px;
}

.bottom-nav-item:hover[b-7xn59qe3mt], .bottom-nav-item:focus[b-7xn59qe3mt] {
    color: #ffffff;
}

.bottom-nav-item.active[b-7xn59qe3mt] {
    color: #60a5fa;
}

.bottom-nav-item.active .bottom-nav-icon[b-7xn59qe3mt] {
    transform: scale(1.15);
}

.top-row-brand[b-7xn59qe3mt] {
    display: none;
}

.mobile-header-logo[b-7xn59qe3mt] {
    height: 28px;
    width: auto;
    object-fit: contain;
}

/* Mobile menu toggle */
.mobile-menu-toggle[b-7xn59qe3mt] {
    display: none;
    background: none;
    border: none;
    padding: 6px;
    margin-right: 8px;
    color: #1e3a8a;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.mobile-menu-toggle:hover[b-7xn59qe3mt] {
    background-color: rgba(30, 58, 138, 0.08);
}

/* Sidebar Backdrop */
.mobile-sidebar-backdrop[b-7xn59qe3mt] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-sidebar-backdrop.show[b-7xn59qe3mt] {
    display: block;
    opacity: 1;
}

@media (max-width: 640.98px) {
    .sidebar[b-7xn59qe3mt] {
        display: flex;
        flex-direction: column;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        height: auto;
        max-height: 75vh;
        width: 100%;
        border-radius: 24px 24px 0 0;
        z-index: 999;
        transform: translateY(100%);
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        overflow: hidden;
    }

    .sidebar[b-7xn59qe3mt]::before {
        content: "";
        display: block;
        width: 38px;
        height: 5px;
        background: rgba(255, 255, 255, 0.35);
        border-radius: 3px;
        margin: 12px auto 6px auto;
        flex-shrink: 0;
    }

    .sidebar[b-7xn59qe3mt]  .top-row {
        display: none !important;
    }

    .sidebar[b-7xn59qe3mt]  .nav-scrollable {
        max-height: calc(75vh - 30px);
        padding-bottom: calc(80px + env(safe-area-inset-bottom, 12px)) !important;
    }

    .sidebar.sidebar-open[b-7xn59qe3mt] {
        transform: translateY(0);
        box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.25);
    }

    .bottom-nav[b-7xn59qe3mt] {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: calc(56px + env(safe-area-inset-bottom, 0px));
        width: 100%;
        background: rgba(30, 58, 138, 0.95);
        backdrop-filter: blur(16px) saturate(180%);
        -webkit-backdrop-filter: blur(16px) saturate(180%);
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
        z-index: 1000; /* Stays above the sidebar bottom sheet */
        justify-content: center;
        align-items: center;
        padding-bottom: env(safe-area-inset-bottom, 0px);
    }

    button.bottom-nav-item[b-7xn59qe3mt] {
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        outline: none;
    }

    .top-row[b-7xn59qe3mt] {
        justify-content: flex-end; /* Align notification bell / tour to right */
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .top-row-brand[b-7xn59qe3mt] {
        display: flex;
        align-items: center;
        flex: 1;
    }

    .mobile-menu-toggle[b-7xn59qe3mt] {
        display: none !important; /* Hide old menu toggle completely */
    }

    article.content[b-7xn59qe3mt] {
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 80px !important;
    }
}

@media (min-width: 641px) {
    .page[b-7xn59qe3mt] {
        flex-direction: row;
    }

    .sidebar[b-7xn59qe3mt] {
        width: 260px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-7xn59qe3mt], article[b-7xn59qe3mt] {
        padding-left: 2.5rem !important;
        padding-right: 2rem !important;
    }
}

#blazor-error-ui[b-7xn59qe3mt] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 10000;
}

#blazor-error-ui .dismiss[b-7xn59qe3mt] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

@media (max-width: 576px) {
    .tour-btn-text[b-7xn59qe3mt] {
        display: none;
    }
    .header-tour-btn[b-7xn59qe3mt] {
        padding: 0 !important;
        margin-right: 8px !important;
        width: 36px;
        height: 36px;
        border-radius: 50% !important;
        justify-content: center;
        align-items: center;
    }
    .tour-btn-icon[b-7xn59qe3mt] {
        font-size: 16px;
        margin-right: 0 !important;
    }
}

/* _content/HomePulse/Components/Layout/NavMenu.razor.rz.scp.css */
.top-row[b-8rnl2put5l] {
    min-height: 3.75rem;
    display: flex;
    align-items: center;
    padding-left: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-brand[b-8rnl2put5l] {
    display: flex;
    align-items: center;
}

.sidebarimg[b-8rnl2put5l] {
    max-height: 2.5rem;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.sidebarimg:hover[b-8rnl2put5l] {
    transform: scale(1.02);
}

.bi[b-8rnl2put5l] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
    opacity: 0.8;
}

.bi-house-door-fill-nav-menu[b-8rnl2put5l] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8.707 1.5a1 1 0 0 0-1.414 0L.646 8.146a.5.5 0 0 0 .708.708L8 2.207l6.646 6.647a.5.5 0 0 0 .708-.708L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.707 1.5Z'/%3E%3Cpath d='m8 3.293 6 6V13.5a1.5 1.5 0 0 1-1.5 1.5h-9A1.5 1.5 0 0 1 2 13.5V9.293l6-6Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-8rnl2put5l] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M14 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h12zM2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2z'/%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 .5-.5z'/%3E%3C/svg%3E");
}

.bi-calendar-check-nav-menu[b-8rnl2put5l] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M10.854 7.146a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 1 1 .708-.708L7.5 9.793l2.646-2.647a.5.5 0 0 1 .708 0z'/%3E%3Cpath d='M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1z'/%3E%3C/svg%3E");
}

.bi-gear-nav-menu[b-8rnl2put5l] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M9.405 1.05c-.413-1.4-2.397-1.4-2.81 0l-.1.34a1.464 1.464 0 0 1-2.105.872l-.31-.17c-1.283-.698-2.686.705-1.987 1.987l.169.311c.446.82.023 1.841-.872 2.105l-.34.1c-1.4.413-1.4 2.397 0 2.81l.34.1a1.464 1.464 0 0 1 .872 2.105l-.17.31c-.698 1.283.705 2.686 1.987 1.987l.311-.169a1.464 1.464 0 0 1 2.105.872l.1.34c.413 1.4 2.397 1.4 2.81 0l.1-.34a1.464 1.464 0 0 1 2.105-.872l.31.17c1.283.698 2.686-.705 1.987-1.987l-.169-.311a1.464 1.464 0 0 1 .872-2.105l.34-.1c1.4-.413 1.4-2.397 0-2.81l-.34-.1a1.464 1.464 0 0 1-.872-2.105l.17-.31c.698-1.283-.705-2.686-1.987-1.987l-.311.169a1.464 1.464 0 0 1-2.105-.872zM8 10.93a2.929 2.929 0 1 1 0-5.86 2.929 2.929 0 0 1 0 5.858z'/%3E%3C/svg%3E");
}

.bi-cloud-rain-fill-nav-menu[b-8rnl2put5l] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M2.62 10.13a3.5 3.5 0 0 1 .537-6.85 4.5 4.5 0 0 1 8.686.88 3.5 3.5 0 0 1 .54 6.849L8 15l-5.38-4.87zM8 13.91l4.47-4.045a2.5 2.5 0 0 0-.256-4.22 3.5 3.5 0 0 0-6.428-1.077 2.5 2.5 0 0 0-.255 4.222L8 13.91z'/%3E%3C/svg%3E");
}

.bi-box-arrow-right[b-8rnl2put5l] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M10 12.5a.5.5 0 0 1-.5.5h-8a.5.5 0 0 1-.5-.5v-9a.5.5 0 0 1 .5-.5h8a.5.5 0 0 1 .5.5v2a.5.5 0 0 0 1 0v-2A1.5 1.5 0 0 0 9.5 2h-8A1.5 1.5 0 0 0 0 3.5v9A1.5 1.5 0 0 0 1.5 14h8a1.5 1.5 0 0 0 1.5-1.5v-2a.5.5 0 0 0-1 0v2z'/%3E%3Cpath fill-rule='evenodd' d='M15.854 8.354a.5.5 0 0 0 0-.708l-3-3a.5.5 0 0 0-.708.708L14.293 7.5H5.5a.5.5 0 0 0 0 1h8.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3z'/%3E%3C/svg%3E");
}

.nav-item[b-8rnl2put5l] {
    font-size: 0.95rem;
    padding-bottom: 0.25rem;
}

.nav-item:first-of-type[b-8rnl2put5l] {
    padding-top: 1.5rem;
}

.bi-wallet2-nav-menu[b-8rnl2put5l] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 2A1.5 1.5 0 0 0 0 3.5v9A1.5 1.5 0 0 0 1.5 14h13a1.5 1.5 0 0 0 1.5-1.5V3.5A1.5 1.5 0 0 0 14.5 2h-13zm0 1h13a.5.5 0 0 1 .5.5V5H1v-.5a.5.5 0 0 1 .5-.5zm13 3v6a.5.5 0 0 1-.5.5h-13a.5.5 0 0 1-.5-.5V6h13z'/%3E%3C/svg%3E");
}

.nav-item[b-8rnl2put5l]  .nav-link {
    color: rgba(255, 255, 255, 0.75);
    background: none;
    border: none;
    border-radius: 8px;
    height: 2.75rem;
    display: flex;
    align-items: center;
    line-height: 2.75rem;
    width: 100%;
    padding: 0 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-item[b-8rnl2put5l]  .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: white;
}

.nav-item[b-8rnl2put5l]  .nav-link:hover .bi {
    opacity: 1;
}

.nav-item[b-8rnl2put5l]  a.active {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.nav-item[b-8rnl2put5l]  a.active .bi {
    opacity: 1;
}

.logout-button[b-8rnl2put5l] {
    cursor: pointer;
    font-size: inherit;
    text-align: left;
    background: none;
    border: none;
}

.nav-scrollable[b-8rnl2put5l] {
    height: calc(100vh - 3.75rem);
    overflow-y: auto;
}

.bi-house-gear-fill-nav-menu[b-8rnl2put5l] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.293 1.5a1 1 0 0 1 1.414 0L11 3.793V2.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v2.293l2.354 2.353a.5.5 0 0 1-.708.708L8 2.207l-5 5V13.5a1.5 1.5 0 0 0 1.5 1.5h4a.5.5 0 0 1 0 1h-4a2.5 2.5 0 0 1-2.5-2.5V7.707l-.646.647a.5.5 0 0 1-.708-.708L7.293 1.5z'/%3E%3Cpath d='M11.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7zm.5-5v1h1a.5.5 0 0 1 0 1h-1v1a.5.5 0 0 1-1 0v-1h-1a.5.5 0 0 1 0-1h1v-1a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-person-lines-fill-nav-menu[b-8rnl2put5l] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M6 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-5 6s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H1zM11 3.5a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5zm.5 2.5a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4zm2 3a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1h-2zm0 3a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1h-2z'/%3E%3C/svg%3E");
}

.bi-chevron-down[b-8rnl2put5l] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    margin-right: 0 !important;
    width: 0.8rem;
    height: 0.8rem;
}

.bi-chevron-up[b-8rnl2put5l] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z'/%3E%3C/svg%3E");
    margin-right: 0 !important;
    width: 0.8rem;
    height: 0.8rem;
}

.bi-file-earmark-text-fill-nav-menu[b-8rnl2put5l] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M9.293 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4.707A1 1 0 0 0 13.707 4L10 .293A1 1 0 0 0 9.293 0zM9.5 3.5v-2l3 3h-2a1 1 0 0 1-1-1zM4.5 9a.5.5 0 0 1 0-1h7a.5.5 0 0 1 0 1h-7zM4 11.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5zm.5-4a.5.5 0 0 1 0-1h4a.5.5 0 0 1 0 1h-4z'/%3E%3C/svg%3E");
}

.bi-tags-fill-nav-menu[b-8rnl2put5l] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M2 2a1 1 0 0 1 1-1h4.586a1 1 0 0 1 .707.293l7 7a1 1 0 0 1 0 1.414l-4.586 4.586a1 1 0 0 1-1.414 0l-7-7A1 1 0 0 1 2 8.586V2zm8.5 3.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3z'/%3E%3Cpath d='M1.293 7.293A1 1 0 0 0 1 8.000V13a1 1 0 0 0 1 1h5a1 1 0 0 0 .707-.293l7.078-7.078A5.97 5.97 0 0 1 12 8c-1.348 0-2.583-.443-3.578-1.193L1.293 7.293z'/%3E%3C/svg%3E");
}

.bi-hammer-nav-menu[b-8rnl2put5l] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M9.972 2.508a.5.5 0 0 0-.16-.557L8.478.853a.5.5 0 0 0-.641.03.498.498 0 0 0 .03.703l.814.757L3.72 7.305l-.548-.51a.5.5 0 0 0-.641.03.498.498 0 0 0 .03.703l1.83 1.704a.5.5 0 0 0 .641-.03.498.498 0 0 0-.03-.703l-.548-.51 4.962-4.962.814.757a.498.498 0 0 0 .703-.03.5.5 0 0 0-.03-.703l-.814-.757L9.972 2.508z'/%3E%3Cpath d='M8.5 7.5 1 15h1.5l7.5-7.5H8.5z'/%3E%3C/svg%3E");
}

.bi-door-open-nav-menu[b-8rnl2put5l] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8.5 10c-.276 0-.5-.448-.5-1s.224-1 .5-1 .5.448.5 1-.224 1-.5 1z'/%3E%3Cpath d='M10.828.122A.5.5 0 0 1 11 .5V15h.5a.5.5 0 0 1 0 1h-7a.5.5 0 0 1 0-1h.5V1.5a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 .328.122zM10 1H6v13h4V1z'/%3E%3C/svg%3E");
}
/* _content/HomePulse/Components/Pages/Residence/ResidenceWizard.razor.rz.scp.css */
.wizard-shell[b-k4ibuv60w6] {
    max-width: 800px;
    margin: 0 auto;
    padding: 32px 16px;
    min-height: 100vh;
}

.wizard-header[b-k4ibuv60w6] {
    text-align: center;
    margin-bottom: 28px;
}

.wizard-header h1[b-k4ibuv60w6] {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    margin: 12px 0 6px 0;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, #1e3a8a, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wizard-header .subtitle[b-k4ibuv60w6] {
    font-size: 1.1rem;
    color: #475569;
    margin: 0;
}

.wizard-header .logotext[b-k4ibuv60w6] {
    max-width: 140px;
}

/* PROGRESS BAR */
.wizard-progress-container[b-k4ibuv60w6] {
    margin-bottom: 32px;
    padding: 0 10px;
}

.progress-bar-track[b-k4ibuv60w6] {
    height: 6px;
    background: #e2e8f0;
    border-radius: 999px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.progress-bar-fill[b-k4ibuv60w6] {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #7c3aed);
    border-radius: 999px;
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-steps[b-k4ibuv60w6] {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.progress-step-node[b-k4ibuv60w6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.step-num[b-k4ibuv60w6] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.step-label[b-k4ibuv60w6] {
    font-size: 0.8rem;
    font-weight: 700;
    color: #64748b;
    margin-top: 8px;
    transition: color 0.3s ease;
}

.progress-step-node.active .step-num[b-k4ibuv60w6] {
    background: #6366f1;
    color: #ffffff;
    box-shadow: 0 0 0 4px rgba(99,102,241,0.25);
}

.progress-step-node.active .step-label[b-k4ibuv60w6] {
    color: #4f46e5;
}

.progress-step-node.completed .step-num[b-k4ibuv60w6] {
    background: #10b981;
    color: #ffffff;
}

.progress-step-node.completed .step-label[b-k4ibuv60w6] {
    color: #10b981;
}

/* WIZARD CARD */
.wizard-card[b-k4ibuv60w6] {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
    animation: slideUp-b-k4ibuv60w6 0.4s ease-out;
}

.wizard-card[b-k4ibuv60w6]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3b82f6, #7c3aed);
}

.wizard-loading[b-k4ibuv60w6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 32px;
    gap: 16px;
}

.wizard-error[b-k4ibuv60w6] {
    text-align: center;
    padding: 48px 32px;
}

.wizard-error h2[b-k4ibuv60w6] {
    color: #ef4444;
    font-weight: 700;
}

/* STEP CONTENT */
.step-intro[b-k4ibuv60w6] {
    margin-bottom: 24px;
}

.step-intro h3[b-k4ibuv60w6] {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 6px 0;
}

.step-intro p[b-k4ibuv60w6] {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* SELECTION BOXES */
.selection-grid[b-k4ibuv60w6] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.selection-box[b-k4ibuv60w6] {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    background: #f8fafc;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
}

.selection-box:hover[b-k4ibuv60w6] {
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.02);
}

.selection-box.selected[b-k4ibuv60w6] {
    border-color: #6366f1;
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(99,102,241,0.05);
}

/* CUSTOM CHECKBOX */
.checkbox-container[b-k4ibuv60w6] {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 700;
    user-select: none;
    color: #0f172a;
    margin: 0;
}

.checkbox-container input[b-k4ibuv60w6] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark[b-k4ibuv60w6] {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    background-color: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 6px;
    transition: all 0.15s ease;
}

.checkbox-container input:checked ~ .checkmark[b-k4ibuv60w6] {
    background-color: #6366f1;
    border-color: #6366f1;
}

.checkmark[b-k4ibuv60w6]:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark[b-k4ibuv60w6]:after {
    display: block;
}

.checkbox-container .checkmark[b-k4ibuv60w6]:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.selection-body[b-k4ibuv60w6] {
    margin-top: 20px;
    display: grid;
    gap: 14px;
    flex-grow: 1;
}

.form-group[b-k4ibuv60w6] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label[b-k4ibuv60w6] {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.wizard-input[b-k4ibuv60w6] {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1.5px solid #cbd5e1;
    font-size: 0.9rem;
    font-weight: 500;
    outline: none;
    background: #ffffff;
    color: #0f172a;
    transition: all 0.15s ease;
}

.wizard-input:focus[b-k4ibuv60w6] {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}

.wizard-input:disabled[b-k4ibuv60w6] {
    background: #f1f5f9;
    color: #94a3b8;
    cursor: not-allowed;
}

/* APPLIANCE LIST STEP 4 */
.appliances-list[b-k4ibuv60w6] {
    display: grid;
    gap: 12px;
}

.appliance-row[b-k4ibuv60w6] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px 20px;
    background: #f8fafc;
    transition: all 0.2s ease;
    flex-wrap: wrap;
    gap: 12px;
}

.appliance-row.selected[b-k4ibuv60w6] {
    border-color: #6366f1;
    background: #ffffff;
    box-shadow: 0 6px 15px rgba(99,102,241,0.04);
}

.appliance-main[b-k4ibuv60w6] {
    flex: 1;
    min-width: 160px;
}

.appliance-name[b-k4ibuv60w6] {
    font-weight: 600;
    color: #0f172a;
    font-size: 1rem;
}

.appliance-year[b-k4ibuv60w6] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.appliance-year label[b-k4ibuv60w6] {
    font-size: 0.8rem;
    font-weight: 700;
    color: #64748b;
    margin: 0;
    text-transform: uppercase;
}

.appliance-year .wizard-input[b-k4ibuv60w6] {
    width: 100%;
}

.stepper-select[b-k4ibuv60w6] {
    flex: 1;
    text-align: center;
    text-align-last: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: #0f172a;
    border: none;
    background: transparent;
    outline: none;
    height: 38px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

/* WIZARD FOOTER */
.wizard-footer[b-k4ibuv60w6] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

/* BUTTONS */
.btn-primary[b-k4ibuv60w6] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 10px;
    background: linear-gradient(135deg, #3b82f6, #7c3aed);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(99,102,241,0.2);
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-primary:hover[b-k4ibuv60w6] {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(99,102,241,0.3);
    color: #ffffff;
}

.btn-secondary[b-k4ibuv60w6] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 10px;
    background: #ffffff;
    color: #475569;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid #cbd5e1;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary:hover[b-k4ibuv60w6] {
    background: #f1f5f9;
    color: #0f172a;
}

.btn-success[b-k4ibuv60w6] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 10px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(16,185,129,0.2);
    transition: all 0.2s ease;
}

.btn-success:hover[b-k4ibuv60w6] {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(16,185,129,0.3);
}

.btn-success:disabled[b-k4ibuv60w6] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-link[b-k4ibuv60w6] {
    background: transparent;
    border: none;
    color: #64748b;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: underline;
}

.btn-link:hover[b-k4ibuv60w6] {
    color: #334155;
    background: #f1f5f9;
}

/* VALIDATION BANNER */
.validation-banner[b-k4ibuv60w6] {
    padding: 14px 20px;
    border-radius: 10px;
    background: #fffbeb;
    border: 1px solid #fef3c7;
    color: #b45309;
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 24px;
    animation: shake-b-k4ibuv60w6 0.3s ease;
}

/* SPINNER */
.spinner[b-k4ibuv60w6] {
    border: 3px solid #f1f5f9;
    border-top: 3px solid #6366f1;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin-b-k4ibuv60w6 1s linear infinite;
}

@keyframes spin-b-k4ibuv60w6 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes slideUp-b-k4ibuv60w6 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shake-b-k4ibuv60w6 {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

/* RESPONSIVENESS */
/* YEAR STEPPER styles */
.year-stepper[b-k4ibuv60w6] {
    display: flex;
    align-items: center;
    border: 1.5px solid #cbd5e1;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
    width: 100%;
    max-width: 160px;
}

.stepper-btn[b-k4ibuv60w6] {
    width: 40px;
    height: 38px;
    border: none;
    background: #f1f5f9;
    color: #475569;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stepper-btn:hover[b-k4ibuv60w6] {
    background: #e2e8f0;
    color: #0f172a;
}

.stepper-btn:active[b-k4ibuv60w6] {
    background: #cbd5e1;
}

.stepper-val[b-k4ibuv60w6] {
    flex: 1;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: #0f172a;
}

@media (max-width: 576px) {
    .wizard-shell[b-k4ibuv60w6] {
        padding: 16px 8px 90px 8px; /* Extra bottom padding for docked footer */
    }
    .wizard-card[b-k4ibuv60w6] {
        padding: 20px 16px;
    }
    .step-intro h3[b-k4ibuv60w6] {
        font-size: 1.2rem;
    }
    .selection-grid[b-k4ibuv60w6] {
        grid-template-columns: 1fr;
    }
    .appliance-row[b-k4ibuv60w6] {
        padding: 14px 12px;
    }
    .appliance-year[b-k4ibuv60w6] {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-top: 10px;
    }
    .year-stepper[b-k4ibuv60w6] {
        max-width: 100%;
        height: 46px;
    }
    .stepper-btn[b-k4ibuv60w6] {
        width: 48px;
        height: 100%;
    }
    .wizard-footer[b-k4ibuv60w6] {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 14px 20px;
        margin-top: 0;
        border-top: 1px solid #e2e8f0;
        box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
        z-index: 100;
        display: flex;
        flex-direction: row;
        gap: 12px;
        align-items: center;
        justify-content: space-between;
    }
    .footer-left[b-k4ibuv60w6], .footer-right[b-k4ibuv60w6] {
        flex: 1;
    }
    .footer-left *[b-k4ibuv60w6], .footer-right *[b-k4ibuv60w6] {
        width: 100%;
        text-align: center;
    }
    .progress-steps[b-k4ibuv60w6] {
        display: none;
    }
}

/* SCHEDULING OPTIONS */
.scheduling-options-grid[b-k4ibuv60w6] {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.scheduling-card[b-k4ibuv60w6] {
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px 24px;
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.01);
}

.scheduling-card:hover[b-k4ibuv60w6] {
    border-color: #cbd5e1;
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.02);
}

.scheduling-card.selected[b-k4ibuv60w6] {
    border-color: #6366f1;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(99,102,241,0.08);
    position: relative;
}

.scheduling-card.selected[b-k4ibuv60w6]::after {
    content: "✓";
    position: absolute;
    top: 20px;
    right: 24px;
    background: #6366f1;
    color: #ffffff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.card-icon[b-k4ibuv60w6] {
    font-size: 2.2rem;
    background: #f1f5f9;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.25s ease;
}

.scheduling-card.selected .card-icon[b-k4ibuv60w6] {
    background: rgba(99, 102, 241, 0.1);
}

.card-body[b-k4ibuv60w6] {
    flex: 1;
}

.card-body h4[b-k4ibuv60w6] {
    margin: 0 0 4px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
}

.card-body p[b-k4ibuv60w6] {
    margin: 0;
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.45;
}
/* _content/HomePulse/Components/Shared/InfoBubble.razor.rz.scp.css */
.info-bubble-container[b-av3e1db6qx] {
    position: relative;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    margin-left: 6px;
}

.info-bubble-trigger[b-av3e1db6qx] {
    background: none;
    border: none;
    padding: 0;
    color: #94a3b8;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: color 0.15s ease, transform 0.15s ease;
}

.info-bubble-trigger:hover[b-av3e1db6qx], .info-bubble-trigger:focus[b-av3e1db6qx] {
    color: #6366f1;
    transform: scale(1.1);
    outline: none;
}

.info-bubble-backdrop[b-av3e1db6qx] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(15, 23, 42, 0.08); /* subtle dimming of main layout */
}

.info-bubble-popup[b-av3e1db6qx] {
    position: absolute;
    bottom: calc(100% + 8px);
    width: 280px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    font-weight: normal;
    text-align: left;
    white-space: normal;
    animation: fadeInScale-b-av3e1db6qx 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-bubble-popup.align-right[b-av3e1db6qx] {
    right: 0;
}

.info-bubble-popup.align-left[b-av3e1db6qx] {
    left: 0;
}

/* Arrow pointers */
.info-bubble-popup[b-av3e1db6qx]::after {
    content: '';
    position: absolute;
    top: 100%;
    border-width: 6px;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
}

.info-bubble-popup.align-right[b-av3e1db6qx]::after {
    right: 12px;
}

.info-bubble-popup.align-left[b-av3e1db6qx]::after {
    left: 12px;
}

.info-bubble-popup[b-av3e1db6qx]::before {
    content: '';
    position: absolute;
    top: 100%;
    border-width: 7px;
    border-style: solid;
    border-color: #e2e8f0 transparent transparent transparent;
    z-index: -1;
}

.info-bubble-popup.align-right[b-av3e1db6qx]::before {
    right: 11px;
}

.info-bubble-popup.align-left[b-av3e1db6qx]::before {
    left: 11px;
}

.info-bubble-header[b-av3e1db6qx] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.info-bubble-title[b-av3e1db6qx] {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.info-bubble-close[b-av3e1db6qx] {
    background: none;
    border: none;
    font-size: 1.15rem;
    line-height: 1;
    color: #94a3b8;
    cursor: pointer;
    padding: 0;
    margin: 0 0 0 auto;
}

.info-bubble-close:hover[b-av3e1db6qx] {
    color: #64748b;
}

.info-bubble-body[b-av3e1db6qx] {
    font-size: 0.8rem;
    line-height: 1.4;
    color: #475569;
}

@keyframes fadeInScale-b-av3e1db6qx {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(4px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Mobile responsive adjustments - sheet drawer style */
@media (max-width: 576px) {
    .info-bubble-popup[b-av3e1db6qx] {
        position: fixed;
        bottom: 16px;
        left: 16px;
        right: 16px;
        width: auto;
        transform: none !important;
        animation: slideUpMobile-b-av3e1db6qx 0.25s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.12);
        border-radius: 16px;
        padding: 16px;
    }
    
    .info-bubble-popup[b-av3e1db6qx]::after, .info-bubble-popup[b-av3e1db6qx]::before {
        display: none; /* No arrows needed for drawer style */
    }
}

@keyframes slideUpMobile-b-av3e1db6qx {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}
