/* /Components/Layout/AdminLayout.razor.rz.scp.css */
.admin-navbar[b-r449asiwns] {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.admin-layout[b-r449asiwns] {
    min-height: 100vh;
    background-color: #f8fafc;
}

.admin-sidebar[b-r449asiwns] {
    position: fixed;
    top: 70px;
    left: 0;
    width: 260px;
    height: calc(100vh - 70px);
    background: white;
    border-right: 1px solid #e2e8f0;
    overflow-y: auto;
    transition: transform 0.3s ease;
    z-index: 1020;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
}

.admin-sidebar.open[b-r449asiwns] {
    transform: translateX(0);
}

@media (max-width: 768px) {
    .admin-sidebar[b-r449asiwns] {
        transform: translateX(-100%);
    }

    .admin-sidebar.open[b-r449asiwns] {
        transform: translateX(0);
    }
}

.sidebar-nav[b-r449asiwns] {
    padding: 1.5rem 0;
}

.sidebar-nav .nav[b-r449asiwns] {
    gap: 0.25rem;
}

.sidebar-nav .nav-header[b-r449asiwns] {
    padding: 1.5rem 1.5rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 0.05em;
    list-style: none;
}

.sidebar-nav .nav-link[b-r449asiwns] {
    padding: 0.875rem 1.5rem;
    color: #475569;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    text-decoration: none;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.sidebar-nav .nav-link:hover[b-r449asiwns] {
    background-color: #f1f5f9;
    color: #6366f1;
    border-left-color: #6366f1;
    text-decoration: none;
}

.sidebar-nav .nav-link.active[b-r449asiwns] {
    background-color: #eef2ff;
    color: #6366f1;
    border-left-color: #6366f1;
    font-weight: 600;
}

.sidebar-nav .nav-link.disabled[b-r449asiwns] {
    cursor: not-allowed;
    opacity: 0.5;
    background-color: #f8fafc;
    color: #94a3b8;
    pointer-events: none;
}

.sidebar-nav .nav-link.disabled:hover[b-r449asiwns] {
    background-color: #f8fafc;
    color: #94a3b8;
    border-left-color: transparent;
}

.sidebar-nav .nav-link i[b-r449asiwns] {
    font-size: 1.125rem;
    width: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.admin-main-content[b-r449asiwns] {
    margin-left: 260px;
    margin-top: 70px;
    padding: 2rem;
    min-height: calc(100vh - 70px);
    transition: margin-left 0.3s ease;
}

@media (max-width: 768px) {
    .admin-main-content[b-r449asiwns] {
        margin-left: 0;
    }
}

.navbar-brand[b-r449asiwns] {
    font-size: 1.5rem;
    margin: 0;
    text-decoration: none;
}

.navbar-brand:hover[b-r449asiwns] {
    text-decoration: none;
    opacity: 0.9;
}

/* Ensure nav items have proper list styling */
.sidebar-nav .nav-item[b-r449asiwns] {
    list-style: none;
}

.sidebar-nav ul[b-r449asiwns] {
    padding-left: 0;
    margin-bottom: 0;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-8qd4ucgaba] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-8qd4ucgaba] {
    flex: 1;
}

.sidebar[b-8qd4ucgaba] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-8qd4ucgaba] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-8qd4ucgaba]  a, .top-row[b-8qd4ucgaba]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-8qd4ucgaba]  a:hover, .top-row[b-8qd4ucgaba]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-8qd4ucgaba]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-8qd4ucgaba] {
        justify-content: space-between;
    }

    .top-row[b-8qd4ucgaba]  a, .top-row[b-8qd4ucgaba]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-8qd4ucgaba] {
        flex-direction: row;
    }

    .sidebar[b-8qd4ucgaba] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-8qd4ucgaba] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-8qd4ucgaba]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-8qd4ucgaba], article[b-8qd4ucgaba] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-8qd4ucgaba] {
    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: 1000;
}

    #blazor-error-ui .dismiss[b-8qd4ucgaba] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-xdwpbwb5b8] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-xdwpbwb5b8] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-xdwpbwb5b8] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-xdwpbwb5b8] {
    font-size: 1.1rem;
}

.bi[b-xdwpbwb5b8] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-xdwpbwb5b8] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-xdwpbwb5b8] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.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 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-xdwpbwb5b8] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-xdwpbwb5b8] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-xdwpbwb5b8] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-xdwpbwb5b8] {
        padding-bottom: 1rem;
    }

    .nav-item[b-xdwpbwb5b8]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-xdwpbwb5b8]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-xdwpbwb5b8]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-xdwpbwb5b8] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-xdwpbwb5b8] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-xdwpbwb5b8] {
        display: none;
    }

    .nav-scrollable[b-xdwpbwb5b8] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-00gm86klzy],
.components-reconnect-repeated-attempt-visible[b-00gm86klzy],
.components-reconnect-failed-visible[b-00gm86klzy],
.components-pause-visible[b-00gm86klzy],
.components-resume-failed-visible[b-00gm86klzy],
.components-rejoining-animation[b-00gm86klzy] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-00gm86klzy],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-00gm86klzy],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-00gm86klzy],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-00gm86klzy],
#components-reconnect-modal.components-reconnect-retrying[b-00gm86klzy],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-00gm86klzy],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-00gm86klzy],
#components-reconnect-modal.components-reconnect-failed[b-00gm86klzy],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-00gm86klzy] {
    display: block;
}


#components-reconnect-modal[b-00gm86klzy] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-00gm86klzy 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-00gm86klzy 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-00gm86klzy 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-00gm86klzy]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-00gm86klzy 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-00gm86klzy {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-00gm86klzy {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-00gm86klzy {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-00gm86klzy] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-00gm86klzy] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-00gm86klzy] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-00gm86klzy] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-00gm86klzy] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-00gm86klzy] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-00gm86klzy] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-00gm86klzy 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-00gm86klzy] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-00gm86klzy {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Admin/Dashboard.razor.rz.scp.css */
.business-card[b-ys6iloj5b9] {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.business-card:hover[b-ys6iloj5b9] {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.2) !important;
}

.business-card .card-body[b-ys6iloj5b9] {
    padding: 2rem 1.5rem;
}

.business-card .badge[b-ys6iloj5b9] {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

.business-card .btn[b-ys6iloj5b9] {
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem;
    transition: all 0.2s ease;
}

.business-card .btn:hover[b-ys6iloj5b9] {
    transform: scale(1.02);
}

.business-card .btn-primary[b-ys6iloj5b9] {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.business-card .btn-primary:hover[b-ys6iloj5b9] {
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.business-card .btn-outline-primary[b-ys6iloj5b9] {
    border-color: #6366f1;
    color: #6366f1;
}

.business-card .btn-outline-primary:hover[b-ys6iloj5b9] {
    background-color: #6366f1;
    border-color: #6366f1;
    color: white;
}

/* Mobile specific styles */
@media (max-width: 768px) {
    .business-card .card-body[b-ys6iloj5b9] {
        padding: 1.5rem 1rem;
    }
    
    .business-card h5[b-ys6iloj5b9] {
        font-size: 1.25rem;
    }
    
    .business-card .badge[b-ys6iloj5b9] {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Logo/icon styling */
.business-card img.rounded-circle[b-ys6iloj5b9],
.business-card .rounded-circle[b-ys6iloj5b9] {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.business-card:hover img.rounded-circle[b-ys6iloj5b9],
.business-card:hover .rounded-circle[b-ys6iloj5b9] {
    transform: scale(1.05);
}
