/* /Components/BalanceSyncComponent.razor.rz.scp.css */
.balance-sync-container[b-gcry0z7odo] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu';
}

.sync-status-bar[b-gcry0z7odo] {
    background: linear-gradient(135deg, #f5f5f5 0%, #eeeeee 100%);
    padding: 12px 16px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 16px;
    border-radius: 4px;
}

.sync-indicator[b-gcry0z7odo] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.sync-icon[b-gcry0z7odo] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.sync-icon i[b-gcry0z7odo] {
    font-size: 12px;
}

.sync-icon.connected[b-gcry0z7odo] {
    background-color: #4CAF50;
    color: white;
}

.sync-icon.reconnecting[b-gcry0z7odo] {
    background-color: #FF9800;
    color: white;
    animation: pulse-animation-b-gcry0z7odo 1s infinite;
}

.sync-icon.disconnected[b-gcry0z7odo] {
    background-color: #f44336;
    color: white;
}

.sync-text[b-gcry0z7odo] {
    font-weight: 500;
}

.last-sync[b-gcry0z7odo] {
    margin-left: auto;
    font-size: 12px;
    color: #999;
}

.balance-display-container[b-gcry0z7odo] {
    padding: 16px;
}

.balance-card[b-gcry0z7odo] {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px;
    position: relative;
}

.balance-card h3[b-gcry0z7odo] {
    margin: 0 0 16px 0;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.update-indicator[b-gcry0z7odo] {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 20px;
    height: 20px;
    color: #4CAF50;
}

.update-indicator.pulse[b-gcry0z7odo] {
    animation: pulse-animation-b-gcry0z7odo 0.6s ease-in-out;
}

@keyframes pulse-animation-b-gcry0z7odo {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.balance-display[b-gcry0z7odo] {
    margin: 20px 0;
}

.balance-value[b-gcry0z7odo] {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    display: block;
}

.balance-breakdown[b-gcry0z7odo] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
}

.breakdown-item[b-gcry0z7odo] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breakdown-item .label[b-gcry0z7odo] {
    font-size: 13px;
    color: #999;
    font-weight: 500;
}

.breakdown-item .value[b-gcry0z7odo] {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.update-reason[b-gcry0z7odo] {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
    font-size: 12px;
    color: #999;
    font-style: italic;
}

.alert[b-gcry0z7odo] {
    padding: 12px 16px;
    margin-bottom: 16px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.alert-warning[b-gcry0z7odo] {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
}

.alert-info[b-gcry0z7odo] {
    background-color: #d1ecf1;
    border: 1px solid #17a2b8;
    color: #0c5460;
}

.alert i[b-gcry0z7odo] {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .balance-value[b-gcry0z7odo] {
        font-size: 32px;
    }

    .balance-breakdown[b-gcry0z7odo] {
        grid-template-columns: 1fr;
    }

    .last-sync[b-gcry0z7odo] {
        margin-left: 0;
        display: block;
        margin-top: 8px;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-totki4ffrm] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-totki4ffrm] {
    flex: 1;
}

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

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

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

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

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

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

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

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

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

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

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

    .top-row[b-totki4ffrm], article[b-totki4ffrm] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-vy49te881s] {
    background-color: rgba(255, 255, 255, 0.1);
}

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

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

.bi[b-vy49te881s] {
    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-vy49te881s] {
    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-vy49te881s] {
    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-vy49te881s] {
    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-vy49te881s] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

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

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

    .nav-item[b-vy49te881s]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

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

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

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

    .collapse[b-vy49te881s] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-vy49te881s] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
