/* /Components/CategorySearch.razor.rz.scp.css */
.category-search-container[b-gzch4olss2] {
    position: relative;
}

.category-dropdown[b-gzch4olss2] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 100;
    max-height: 200px;
    overflow-y: auto;
    margin-top: var(--space-2xs);
}

.category-option[b-gzch4olss2] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.category-option:hover[b-gzch4olss2] {
    background: var(--color-bg-tertiary);
}

.category-icon[b-gzch4olss2] {
    font-size: 1.1rem;
}

.category-dot[b-gzch4olss2] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.category-add[b-gzch4olss2] {
    color: var(--color-primary);
    border-top: 1px solid var(--color-border-light);
}

.category-add svg[b-gzch4olss2] {
    flex-shrink: 0;
}
/* /Components/Modal.razor.rz.scp.css */
/* Modal Overlay */
.modal-overlay[b-csm0x1kfi2] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 300;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    animation: fadeIn-b-csm0x1kfi2 var(--transition-fast);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

@keyframes fadeIn-b-csm0x1kfi2 {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Modal Container - Mobile (Bottom Sheet) */
.modal-container[b-csm0x1kfi2] {
    background: var(--color-bg-secondary);
    width: 100%;
    max-height: 90vh;
    max-height: 90dvh;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    display: flex;
    flex-direction: column;
    animation: slideUp-b-csm0x1kfi2 var(--transition-normal);
    box-shadow: var(--shadow-xl);
    padding-bottom: var(--safe-area-bottom);
}

@keyframes slideUp-b-csm0x1kfi2 {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

/* Modal Header */
.modal-header[b-csm0x1kfi2] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    border-bottom: 1px solid var(--color-border-light);
    flex-shrink: 0;
}

.modal-title[b-csm0x1kfi2] {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    margin: 0;
    color: var(--color-text-primary);
}

.modal-close[b-csm0x1kfi2] {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-tertiary);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
}

.modal-close:hover[b-csm0x1kfi2] {
    background: var(--color-border);
    color: var(--color-text-primary);
}

/* Modal Body */
.modal-body[b-csm0x1kfi2] {
    padding: var(--space-lg);
    flex: 1;
    min-height: 0;
}

.modal-body.scrollable[b-csm0x1kfi2] {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Modal Footer */
.modal-footer[b-csm0x1kfi2] {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    border-top: 1px solid var(--color-border-light);
    flex-shrink: 0;
}

.modal-footer > *[b-csm0x1kfi2] {
    flex: 1;
}

/* Size Variants */
.modal-sm[b-csm0x1kfi2] {
    max-width: 400px;
}

.modal-lg[b-csm0x1kfi2] {
    max-width: 800px;
}

.modal-fullscreen[b-csm0x1kfi2] {
    max-height: 100vh;
    max-height: 100dvh;
    border-radius: 0;
    height: 100%;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .modal-overlay[b-csm0x1kfi2] {
        align-items: center;
        padding: var(--space-xl);
    }

    .modal-container[b-csm0x1kfi2] {
        max-width: 560px;
        max-height: 85vh;
        border-radius: var(--radius-xl);
        animation: scaleIn-b-csm0x1kfi2 var(--transition-normal);
    }

    @keyframes scaleIn-b-csm0x1kfi2 {
        from {
            opacity: 0;
            transform: scale(0.95) translateY(10px);
        }
        to {
            opacity: 1;
            transform: scale(1) translateY(0);
        }
    }

    .modal-sm[b-csm0x1kfi2] {
        max-width: 400px;
    }

    .modal-lg[b-csm0x1kfi2] {
        max-width: 800px;
    }

    .modal-fullscreen[b-csm0x1kfi2] {
        max-width: 100%;
        max-height: 100%;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .modal-footer > *[b-csm0x1kfi2] {
        flex: none;
    }

    .modal-footer[b-csm0x1kfi2] {
        justify-content: flex-end;
    }
}
/* /Components/ProviderSearch.razor.rz.scp.css */
.provider-search-container[b-rq34xk4bui] {
    position: relative;
}

.provider-dropdown[b-rq34xk4bui] {
    position: relative;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 100;
    max-height: 200px;
    overflow-y: auto;
    margin-top: var(--space-2xs);
}

.provider-option[b-rq34xk4bui] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.provider-option:hover[b-rq34xk4bui] {
    background: var(--color-bg-tertiary);
}

.provider-add[b-rq34xk4bui] {
    color: var(--color-primary);
    gap: var(--space-sm);
    justify-content: flex-start;
    border-top: 1px solid var(--color-border-light);
}

.provider-add svg[b-rq34xk4bui] {
    flex-shrink: 0;
}
/* /Components/SwipeableOneOffItem.razor.rz.scp.css */
.swipeable-container[b-tykb28z6ab] {
    position: relative;
    overflow: hidden;
    margin-bottom: var(--space-sm);
    border-radius: var(--radius-md);
}

.swipe-action[b-tykb28z6ab] {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    opacity: 0;
    transition: opacity var(--transition-fast);
    gap: var(--space-xs);
}

.swipe-action svg[b-tykb28z6ab] {
    width: 24px;
    height: 24px;
}

.swipe-action-left[b-tykb28z6ab] {
    left: 0;
    background: var(--color-danger);
}

.swipe-action-right[b-tykb28z6ab] {
    right: 0;
    background: var(--color-success);
}

.swiping-left .swipe-action-left[b-tykb28z6ab],
.swiping-right .swipe-action-right[b-tykb28z6ab] {
    opacity: 1;
}

.transaction-item[b-tykb28z6ab] {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    transition: transform var(--transition-fast);
    position: relative;
    z-index: 1;
}

.transaction-item.income[b-tykb28z6ab] {
    border-left: 3px solid var(--color-success);
}

.transaction-item.expense[b-tykb28z6ab] {
    border-left: 3px solid var(--color-danger);
}

.transaction-item.one-off[b-tykb28z6ab] {
    border-left-style: dotted;
}

.transaction-item.paid[b-tykb28z6ab] {
    opacity: 0.7;
}

.transaction-item.paid .description[b-tykb28z6ab],
.transaction-item.paid .amount[b-tykb28z6ab] {
    text-decoration: line-through;
}

.transaction-item-header[b-tykb28z6ab] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xs);
}

.transaction-item-header .date[b-tykb28z6ab] {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
}

.badge[b-tykb28z6ab] {
    font-size: var(--font-size-xs);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-medium);
}

.badge-secondary[b-tykb28z6ab] {
    background: rgba(142, 142, 147, 0.15);
    color: var(--color-text-secondary);
}

.badge-success[b-tykb28z6ab] {
    background: rgba(52, 199, 89, 0.15);
    color: var(--color-success);
}

.badge-warning[b-tykb28z6ab] {
    background: rgba(255, 179, 64, 0.15);
    color: var(--color-warning);
}

.transaction-item-body[b-tykb28z6ab] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-sm);
}

.item-info[b-tykb28z6ab] {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    flex: 1;
    min-width: 0;
}

.description[b-tykb28z6ab] {
    font-weight: var(--font-weight-medium);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.category-badge[b-tykb28z6ab] {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    background: var(--color-bg-tertiary);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    width: fit-content;
}

.amount-area[b-tykb28z6ab] {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    flex-shrink: 0;
}

.amount-stack[b-tykb28z6ab] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.amount[b-tykb28z6ab] {
    font-weight: var(--font-weight-semibold);
    white-space: nowrap;
}

.running-balance[b-tykb28z6ab] {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    opacity: 0.8;
    white-space: nowrap;
}

.text-success[b-tykb28z6ab] {
    color: var(--color-success);
}

.text-danger[b-tykb28z6ab] {
    color: var(--color-danger);
}

.btn-kebab[b-tykb28z6ab] {
    background: transparent;
    border: none;
    padding: var(--space-xs);
    margin-left: auto;
    cursor: pointer;
    color: var(--color-text-secondary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.btn-kebab:hover[b-tykb28z6ab] {
    background: var(--color-bg-tertiary);
    color: var(--color-text-primary);
}

.btn-kebab:active[b-tykb28z6ab] {
    transform: scale(0.95);
}

.menu-overlay[b-tykb28z6ab] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: fadeIn-b-tykb28z6ab var(--transition-fast);
}

@keyframes fadeIn-b-tykb28z6ab {
    from { opacity: 0; }
    to { opacity: 1; }
}

.item-menu[b-tykb28z6ab] {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    padding: var(--space-lg);
    padding-bottom: calc(var(--space-lg) + var(--safe-area-bottom));
    z-index: 101;
    animation: slideUp-b-tykb28z6ab var(--transition-normal);
    box-shadow: var(--shadow-xl);
}

@keyframes slideUp-b-tykb28z6ab {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.menu-item[b-tykb28z6ab] {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    width: 100%;
    padding: var(--space-md);
    border: none;
    background: transparent;
    color: var(--color-text-primary);
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-medium);
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
}

.menu-item:hover[b-tykb28z6ab] {
    background: var(--color-bg-tertiary);
}

.menu-item:active[b-tykb28z6ab] {
    transform: scale(0.98);
}

.menu-item svg[b-tykb28z6ab] {
    flex-shrink: 0;
    color: var(--color-text-secondary);
}

.menu-item-danger[b-tykb28z6ab] {
    color: var(--color-danger);
}

.menu-item-danger svg[b-tykb28z6ab] {
    color: var(--color-danger);
}
/* /Components/SwipeableTransactionItem.razor.rz.scp.css */
.swipeable-container[b-nvo226ur5y] {
    position: relative;
    overflow: hidden;
    margin-bottom: var(--space-sm);
    border-radius: var(--radius-md);
}

.swipe-action[b-nvo226ur5y] {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    opacity: 0;
    transition: opacity var(--transition-fast);
    gap: var(--space-xs);
}

.swipe-action svg[b-nvo226ur5y] {
    width: 24px;
    height: 24px;
}

.swipe-action-left[b-nvo226ur5y] {
    left: 0;
    background: var(--color-danger);
}

.swipe-action-right[b-nvo226ur5y] {
    right: 0;
    background: var(--color-success);
}

.swiping-left .swipe-action-left[b-nvo226ur5y],
.swiping-right .swipe-action-right[b-nvo226ur5y] {
    opacity: 1;
}

.transaction-item[b-nvo226ur5y] {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    transition: transform var(--transition-fast);
    position: relative;
    z-index: 1;
}

.transaction-item.income[b-nvo226ur5y] {
    border-left: 3px solid var(--color-success);
}

.transaction-item.expense[b-nvo226ur5y] {
    border-left: 3px solid var(--color-danger);
}

.transaction-item.paid[b-nvo226ur5y] {
    opacity: 0.7;
}

.transaction-item.paid .description[b-nvo226ur5y],
.transaction-item.paid .amount[b-nvo226ur5y] {
    text-decoration: line-through;
}

.transaction-item.has-override[b-nvo226ur5y] {
    border-left-width: 4px;
    border-left-style: dashed;
}

.transaction-item-header[b-nvo226ur5y] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xs);
}

.transaction-item-header .date[b-nvo226ur5y] {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
}

.badge[b-nvo226ur5y] {
    font-size: var(--font-size-xs);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-medium);
}

.badge-success[b-nvo226ur5y] {
    background: rgba(52, 199, 89, 0.15);
    color: var(--color-success);
}

.badge-warning[b-nvo226ur5y] {
    background: rgba(255, 179, 64, 0.15);
    color: var(--color-warning);
}

.transaction-item-body[b-nvo226ur5y] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-sm);
}

.item-info[b-nvo226ur5y] {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    flex: 1;
    min-width: 0;
}

.description[b-nvo226ur5y] {
    font-weight: var(--font-weight-medium);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.category-badge[b-nvo226ur5y] {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    background: var(--color-bg-tertiary);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    width: fit-content;
}

.amount-area[b-nvo226ur5y] {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    flex-shrink: 0;
}

.amount-stack[b-nvo226ur5y] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.amount[b-nvo226ur5y] {
    font-weight: var(--font-weight-semibold);
    white-space: nowrap;
}

.running-balance[b-nvo226ur5y] {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    opacity: 0.8;
    white-space: nowrap;
}

.text-success[b-nvo226ur5y] {
    color: var(--color-success);
}

.text-danger[b-nvo226ur5y] {
    color: var(--color-danger);
}

.override-indicator[b-nvo226ur5y] {
    color: var(--color-primary);
    display: flex;
    align-items: center;
}

.override-indicator svg[b-nvo226ur5y] {
    width: 14px;
    height: 14px;
}

.btn-kebab[b-nvo226ur5y] {
    background: transparent;
    border: none;
    padding: var(--space-xs);
    margin-left: auto;
    cursor: pointer;
    color: var(--color-text-secondary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.btn-kebab:hover[b-nvo226ur5y] {
    background: var(--color-bg-tertiary);
    color: var(--color-text-primary);
}

.btn-kebab:active[b-nvo226ur5y] {
    transform: scale(0.95);
}

.menu-overlay[b-nvo226ur5y] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: fadeIn-b-nvo226ur5y var(--transition-fast);
}

@keyframes fadeIn-b-nvo226ur5y {
    from { opacity: 0; }
    to { opacity: 1; }
}

.item-menu[b-nvo226ur5y] {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    padding: var(--space-lg);
    padding-bottom: calc(var(--space-lg) + var(--safe-area-bottom));
    z-index: 101;
    animation: slideUp-b-nvo226ur5y var(--transition-normal);
    box-shadow: var(--shadow-xl);
}

@keyframes slideUp-b-nvo226ur5y {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.menu-item[b-nvo226ur5y] {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    width: 100%;
    padding: var(--space-md);
    border: none;
    background: transparent;
    color: var(--color-text-primary);
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-medium);
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
}

.menu-item:hover[b-nvo226ur5y] {
    background: var(--color-bg-tertiary);
}

.menu-item:active[b-nvo226ur5y] {
    transform: scale(0.98);
}

.menu-item svg[b-nvo226ur5y] {
    flex-shrink: 0;
    color: var(--color-text-secondary);
}

.menu-item-danger[b-nvo226ur5y] {
    color: var(--color-danger);
}

.menu-item-danger svg[b-nvo226ur5y] {
    color: var(--color-danger);
}
/* /Layout/LoginDisplay.razor.rz.scp.css */
/* User dropdown for mobile */
.user-dropdown-overlay[b-fiuc0t14q0] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 250;
    display: flex;
    justify-content: flex-end;
    padding: var(--space-md);
    padding-top: calc(var(--header-height-mobile) + var(--space-md));
}

.user-dropdown[b-fiuc0t14q0] {
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 280px;
    max-width: calc(100vw - var(--space-xl));
    animation: dropdownEnter-b-fiuc0t14q0 var(--transition-fast);
    overflow: hidden;
    height: fit-content;
}

@keyframes dropdownEnter-b-fiuc0t14q0 {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.user-dropdown-header[b-fiuc0t14q0] {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    border-bottom: 1px solid var(--color-border-light);
}

.user-dropdown-item[b-fiuc0t14q0] {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    border: none;
    background: none;
    color: var(--color-text-primary);
    font-size: var(--font-size-sm);
    cursor: pointer;
    transition: background var(--transition-fast);
    text-align: left;
    font-family: inherit;
}

.user-dropdown-item:hover[b-fiuc0t14q0] {
    background: var(--color-bg-tertiary);
}

.user-dropdown-item.danger[b-fiuc0t14q0] {
    color: var(--color-danger);
}

.user-dropdown-item.danger:hover[b-fiuc0t14q0] {
    background: var(--color-danger-bg);
}
/* /Layout/MainLayout.razor.rz.scp.css */
/* MainLayout scoped styles */
/* Primary layout handled by layout.css */
/* This file for component-specific overrides only */
/* /Layout/ThemeToggle.razor.rz.scp.css */
.theme-toggle[b-tqwig7u4sg] {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-tertiary);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
}

.theme-toggle:hover[b-tqwig7u4sg] {
    background: var(--color-border);
    color: var(--color-text-primary);
}

.theme-toggle:active[b-tqwig7u4sg] {
    transform: scale(0.95);
}

.theme-toggle svg[b-tqwig7u4sg] {
    transition: transform var(--transition-normal);
}

.theme-toggle:hover svg[b-tqwig7u4sg] {
    transform: rotate(15deg);
}
/* /Pages/Authentication/Login.razor.rz.scp.css */
/* Auth Page Styles */
.auth-container[b-dusura3xtz] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - var(--nav-height-mobile) - var(--header-height-mobile) - var(--space-xl));
    padding: var(--space-lg);
}

@media (min-width: 1024px) {
    .auth-container[b-dusura3xtz] {
        min-height: calc(100vh - var(--space-xl) * 2);
    }
}

.auth-card[b-dusura3xtz] {
    width: 100%;
    max-width: 400px;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border-light);
}

.auth-header[b-dusura3xtz] {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.auth-icon[b-dusura3xtz] {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
    background: linear-gradient(135deg, var(--color-primary-bg), var(--color-accent-bg));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.auth-title[b-dusura3xtz] {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    margin: 0 0 var(--space-xs);
    color: var(--color-text-primary);
}

.auth-subtitle[b-dusura3xtz] {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin: 0;
}

.auth-form[b-dusura3xtz] {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.auth-form .form-group[b-dusura3xtz] {
    margin-bottom: 0;
}

.auth-form .form-check[b-dusura3xtz] {
    margin-bottom: var(--space-md);
}

.auth-footer[b-dusura3xtz] {
    margin-top: var(--space-xl);
    text-align: center;
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    display: flex;
    gap: var(--space-xs);
    justify-content: center;
}

.auth-footer a[b-dusura3xtz] {
    color: var(--color-primary);
    font-weight: var(--font-weight-medium);
}
/* /Pages/Authentication/Register.razor.rz.scp.css */
/* Auth Page Styles */
.auth-container[b-aaw1wt3ae4] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - var(--nav-height-mobile) - var(--header-height-mobile) - var(--space-xl));
    padding: var(--space-lg);
}

@media (min-width: 1024px) {
    .auth-container[b-aaw1wt3ae4] {
        min-height: calc(100vh - var(--space-xl) * 2);
    }
}

.auth-card[b-aaw1wt3ae4] {
    width: 100%;
    max-width: 440px;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border-light);
}

.auth-header[b-aaw1wt3ae4] {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.auth-icon[b-aaw1wt3ae4] {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
    background: linear-gradient(135deg, var(--color-primary-bg), var(--color-accent-bg));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.auth-title[b-aaw1wt3ae4] {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    margin: 0 0 var(--space-xs);
    color: var(--color-text-primary);
}

.auth-subtitle[b-aaw1wt3ae4] {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin: 0;
}

.auth-form[b-aaw1wt3ae4] {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.auth-form .form-group[b-aaw1wt3ae4] {
    margin-bottom: 0;
}

.name-row[b-aaw1wt3ae4] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.auth-footer[b-aaw1wt3ae4] {
    margin-top: var(--space-xl);
    text-align: center;
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    display: flex;
    gap: var(--space-xs);
    justify-content: center;
}

.auth-footer a[b-aaw1wt3ae4] {
    color: var(--color-primary);
    font-weight: var(--font-weight-medium);
}
/* /Pages/Balance/Index.razor.rz.scp.css */
/* Balance Page Specific Styles */

/* Mobile Page Header */
.mobile-page-header[b-1bg5qws5fs] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.mobile-page-header .page-title[b-1bg5qws5fs] {
    font-size: var(--font-size-xl);
    margin: 0;
}

/* Settings Card */
.settings-card[b-1bg5qws5fs] {
    margin-bottom: var(--space-lg);
}

.settings-card .card-header[b-1bg5qws5fs] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.settings-grid[b-1bg5qws5fs] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
}

/* Period Selector */
.period-selector-card[b-1bg5qws5fs] {
    margin-bottom: var(--space-lg);
}

.period-selector-card .card-body[b-1bg5qws5fs] {
    padding: var(--space-sm);
}

.period-selector-card .btn-group[b-1bg5qws5fs] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.period-selector-card .btn-group .btn[b-1bg5qws5fs] {
    flex: 1;
    min-width: 70px;
}

/* Month Navigation */
.month-nav[b-1bg5qws5fs] {
    display: flex;
    justify-content: center;
    width: 100%;
}

.month-nav .btn:first-child[b-1bg5qws5fs],
.month-nav .btn:last-child[b-1bg5qws5fs] {
    flex: 0 0 auto;
    min-width: 50px;
}

.month-nav .month-display[b-1bg5qws5fs] {
    flex: 1;
    min-width: 150px;
    font-weight: 600;
    pointer-events: none;
}

/* Mark as Paid Button */
.mark-paid-btn[b-1bg5qws5fs] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    font-size: var(--text-sm);
}

/* Paid Button (disabled state) */
.paid-btn[b-1bg5qws5fs] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    font-size: var(--text-sm);
    opacity: 1 !important;
    cursor: default;
}

/* Paid item styling - strikethrough */
.balance-item.paid .description[b-1bg5qws5fs],
.balance-item.paid .amount[b-1bg5qws5fs] {
    text-decoration: line-through;
    opacity: 0.7;
}

.row-paid td:nth-child(2)[b-1bg5qws5fs],
.row-paid td:nth-child(4)[b-1bg5qws5fs] {
    text-decoration: line-through;
    opacity: 0.7;
}

/* Balance List (Mobile) */
.balance-list[b-1bg5qws5fs] {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.balance-item[b-1bg5qws5fs] {
    background: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    transition: all var(--transition-normal);
}

.balance-item.editable[b-1bg5qws5fs] {
    cursor: pointer;
}

.balance-item.editable:hover[b-1bg5qws5fs] {
    border-color: var(--color-primary);
    background: var(--color-bg-secondary);
}

.balance-item.editable:active[b-1bg5qws5fs] {
    transform: scale(0.98);
}

.balance-item.projected[b-1bg5qws5fs] {
    opacity: 0.7;
    border-left: 3px dashed var(--color-text-muted);
    background: var(--color-bg-tertiary);
}

.balance-item.income[b-1bg5qws5fs] {
    border-left: 3px solid var(--color-success);
}

.balance-item.expense:not(.projected)[b-1bg5qws5fs] {
    border-left: 3px solid var(--color-danger);
}

.balance-item-header[b-1bg5qws5fs] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xs);
}

.balance-item-header .date[b-1bg5qws5fs] {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.balance-item-header .running-balance[b-1bg5qws5fs] {
    font-weight: 600;
}

.balance-item-body[b-1bg5qws5fs] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-sm);
}

.balance-item-body .item-info[b-1bg5qws5fs] {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.balance-item-body .description[b-1bg5qws5fs] {
    font-weight: 500;
}

.balance-item-body .category-badge[b-1bg5qws5fs] {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    background: var(--color-bg-tertiary);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    width: fit-content;
}

.balance-item-body .amount-area[b-1bg5qws5fs] {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.balance-item-body .amount[b-1bg5qws5fs] {
    font-weight: 600;
    white-space: nowrap;
}

.balance-item-body .edit-indicator[b-1bg5qws5fs] {
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
}

.balance-item.editable:hover .edit-indicator[b-1bg5qws5fs] {
    color: var(--color-primary);
}

.balance-item-footer[b-1bg5qws5fs] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-xs);
}

.balance-item-footer .badge[b-1bg5qws5fs] {
    margin: 0;
}

.view-payment-link[b-1bg5qws5fs] {
    font-size: var(--text-sm);
    color: var(--color-primary);
    text-decoration: none;
}

.view-payment-link:hover[b-1bg5qws5fs] {
    text-decoration: underline;
}

/* Table Styles */
.row-projected[b-1bg5qws5fs] {
    background-color: var(--color-bg-tertiary);
    font-style: italic;
    opacity: 0.7;
}

.row-editable[b-1bg5qws5fs] {
    cursor: pointer;
}

.row-editable:hover[b-1bg5qws5fs] {
    background-color: var(--color-bg-secondary);
}

.actions-cell[b-1bg5qws5fs] {
    display: flex;
    gap: var(--space-xs);
    justify-content: flex-end;
}

/* FAB spacer for mobile view */
.fab-spacer[b-1bg5qws5fs] {
    height: 80px;
}

@media (min-width: 769px) {
    .fab-spacer[b-1bg5qws5fs] {
        display: none;
    }
}

/* /Pages/Budgets/Index.razor.rz.scp.css */
/* Budgets Page Styles */

.loading-container[b-z4tii1x45e] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

/* Month Navigation */
.month-nav[b-z4tii1x45e] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    margin-bottom: var(--space-md);
}

.month-nav-btn[b-z4tii1x45e] {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border-light);
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.month-nav-btn:hover[b-z4tii1x45e] {
    background: var(--color-bg-tertiary);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.month-nav-label[b-z4tii1x45e] {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    min-width: 160px;
    text-align: center;
}

/* Budget Summary */
.budget-summary[b-z4tii1x45e] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

@media (max-width: 480px) {
    .budget-summary[b-z4tii1x45e] {
        grid-template-columns: 1fr;
        gap: var(--space-xs);
    }
}

.summary-item[b-z4tii1x45e] {
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    text-align: center;
    border: 1px solid var(--color-border-light);
}

.summary-item.status-danger[b-z4tii1x45e] {
    border-color: var(--color-danger);
    background: rgba(239, 68, 68, 0.1);
}

.summary-item.status-success[b-z4tii1x45e] {
    border-color: var(--color-success);
    background: rgba(0, 212, 170, 0.1);
}

.summary-label[b-z4tii1x45e] {
    display: block;
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
}

.summary-value[b-z4tii1x45e] {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
}

/* Empty State */
.empty-state-container[b-z4tii1x45e] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-2xl);
    min-height: 300px;
}

.empty-state-icon[b-z4tii1x45e] {
    width: 80px;
    height: 80px;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.empty-state-container h3[b-z4tii1x45e] {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-sm);
}

.empty-state-container p[b-z4tii1x45e] {
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

/* Budget Grid */
.budget-grid[b-z4tii1x45e] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-md);
}

@media (max-width: 640px) {
    .budget-grid[b-z4tii1x45e] {
        grid-template-columns: 1fr;
    }
}

/* Budget Card */
.budget-card[b-z4tii1x45e] {
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    overflow: hidden;
    transition: box-shadow var(--transition-fast);
}

.budget-card:hover[b-z4tii1x45e] {
    box-shadow: var(--shadow-md);
}

.budget-card-header[b-z4tii1x45e] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md);
    border-bottom: 1px solid var(--color-border-light);
}

.budget-category[b-z4tii1x45e] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.category-dot[b-z4tii1x45e] {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

.category-name[b-z4tii1x45e] {
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
}

.budget-card-body[b-z4tii1x45e] {
    padding: var(--space-md);
}

.budget-amounts[b-z4tii1x45e] {
    display: flex;
    align-items: baseline;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.budget-spent[b-z4tii1x45e] {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
}

.budget-limit[b-z4tii1x45e] {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.budget-footer[b-z4tii1x45e] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-sm);
}

.budget-remaining[b-z4tii1x45e] {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
}

.budget-percent[b-z4tii1x45e] {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

/* FAB (Floating Action Button) */
.fab[b-z4tii1x45e] {
    position: fixed;
    bottom: calc(var(--nav-height-mobile) + var(--safe-area-bottom) + var(--space-md));
    right: var(--space-md);
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(91, 108, 255, 0.4);
    z-index: 50;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    cursor: pointer;
}

.fab:hover[b-z4tii1x45e] {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(91, 108, 255, 0.5);
}

.fab:active[b-z4tii1x45e] {
    transform: scale(0.95);
}
/* /Pages/Calendar/Index.razor.rz.scp.css */
/* Calendar Page Styles */

.loading-container[b-vedtpeaf3z] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

/* Month Navigation */
.month-nav[b-vedtpeaf3z] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    margin-bottom: var(--space-md);
}

.month-nav-btn[b-vedtpeaf3z] {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border-light);
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.month-nav-btn:hover[b-vedtpeaf3z] {
    background: var(--color-bg-tertiary);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.month-nav-label[b-vedtpeaf3z] {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    min-width: 180px;
    text-align: center;
}

/* Summary Cards */
.calendar-summary[b-vedtpeaf3z] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

@media (max-width: 640px) {
    .calendar-summary[b-vedtpeaf3z] {
        grid-template-columns: repeat(2, 1fr);
    }
}

.summary-item[b-vedtpeaf3z] {
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    text-align: center;
    border: 1px solid var(--color-border-light);
}

.summary-item.status-success[b-vedtpeaf3z] {
    border-color: var(--color-success);
    background: rgba(0, 212, 170, 0.1);
}

.summary-item.status-warning[b-vedtpeaf3z] {
    border-color: var(--color-warning);
    background: rgba(245, 158, 11, 0.1);
}

.summary-label[b-vedtpeaf3z] {
    display: block;
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
}

.summary-value[b-vedtpeaf3z] {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
}

@media (min-width: 640px) {
    .summary-value[b-vedtpeaf3z] {
        font-size: var(--font-size-lg);
    }
}

/* Legend */
.status-legend[b-vedtpeaf3z] {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
}

.legend-item[b-vedtpeaf3z] {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.legend-dot[b-vedtpeaf3z] {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
}

.legend-dot.status-scheduled[b-vedtpeaf3z] {
    background: var(--color-primary);
}

.legend-dot.status-paid[b-vedtpeaf3z] {
    background: var(--color-success);
}

.legend-dot.status-overdue[b-vedtpeaf3z] {
    background: var(--color-warning);
}

.legend-dot.status-skipped[b-vedtpeaf3z] {
    background: var(--color-text-muted);
}

/* Calendar Grid */
.calendar-grid[b-vedtpeaf3z] {
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    overflow: hidden;
}

.calendar-header[b-vedtpeaf3z] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: var(--color-bg-tertiary);
    border-bottom: 1px solid var(--color-border-light);
}

.calendar-header-cell[b-vedtpeaf3z] {
    padding: var(--space-sm);
    text-align: center;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-muted);
}

.calendar-body[b-vedtpeaf3z] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.calendar-day[b-vedtpeaf3z] {
    min-height: 60px;
    padding: var(--space-xs);
    border-right: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.calendar-day:nth-child(7n)[b-vedtpeaf3z] {
    border-right: none;
}

.calendar-day:hover[b-vedtpeaf3z] {
    background: var(--color-bg-tertiary);
}

.calendar-day.other-month[b-vedtpeaf3z] {
    opacity: 0.4;
}

.calendar-day.today[b-vedtpeaf3z] {
    background: var(--color-primary-bg);
}

.calendar-day.today .day-number[b-vedtpeaf3z] {
    background: var(--color-primary);
    color: white;
    border-radius: var(--radius-full);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.day-number[b-vedtpeaf3z] {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-primary);
    margin-bottom: var(--space-2xs);
}

.day-dots[b-vedtpeaf3z] {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
}

.occurrence-dot[b-vedtpeaf3z] {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
}

.occurrence-dot.status-scheduled[b-vedtpeaf3z] {
    background: var(--color-primary);
}

.occurrence-dot.status-paid[b-vedtpeaf3z] {
    background: var(--color-success);
}

.occurrence-dot.status-overdue[b-vedtpeaf3z] {
    background: var(--color-warning);
}

.occurrence-dot.status-skipped[b-vedtpeaf3z] {
    background: var(--color-text-muted);
}

.occurrence-more[b-vedtpeaf3z] {
    font-size: 10px;
    color: var(--color-text-muted);
}

@media (min-width: 640px) {
    .calendar-day[b-vedtpeaf3z] {
        min-height: 80px;
        padding: var(--space-sm);
    }

    .occurrence-dot[b-vedtpeaf3z] {
        width: 10px;
        height: 10px;
    }
}

/* Upcoming Section */
.upcoming-section[b-vedtpeaf3z] {
    margin-top: var(--space-lg);
}

.section-title[b-vedtpeaf3z] {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.upcoming-list[b-vedtpeaf3z] {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.upcoming-item[b-vedtpeaf3z] {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    border: 1px solid var(--color-border-light);
    cursor: pointer;
    transition: box-shadow var(--transition-fast);
}

.upcoming-item:hover[b-vedtpeaf3z] {
    box-shadow: var(--shadow-md);
}

.upcoming-date[b-vedtpeaf3z] {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 44px;
}

.upcoming-day[b-vedtpeaf3z] {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    line-height: 1;
}

.upcoming-month[b-vedtpeaf3z] {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.upcoming-info[b-vedtpeaf3z] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.upcoming-name[b-vedtpeaf3z] {
    font-weight: var(--font-weight-medium);
    color: var(--color-text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.upcoming-category[b-vedtpeaf3z] {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.upcoming-amount[b-vedtpeaf3z] {
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
}

/* Day Modal */
.day-occurrences[b-vedtpeaf3z] {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.occurrence-card[b-vedtpeaf3z] {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-light);
    cursor: pointer;
    transition: box-shadow var(--transition-fast);
}

.occurrence-card:hover[b-vedtpeaf3z] {
    box-shadow: var(--shadow-md);
}

.occurrence-card.occurrence-paid[b-vedtpeaf3z] {
    border-left: 3px solid var(--color-success);
}

.occurrence-card.occurrence-overdue[b-vedtpeaf3z] {
    border-left: 3px solid var(--color-warning);
}

.occurrence-card.occurrence-skipped[b-vedtpeaf3z] {
    border-left: 3px solid var(--color-text-muted);
    opacity: 0.7;
}

.occurrence-card.occurrence-scheduled[b-vedtpeaf3z] {
    border-left: 3px solid var(--color-primary);
}

.occurrence-header[b-vedtpeaf3z] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xs);
}

.occurrence-name[b-vedtpeaf3z] {
    font-weight: var(--font-weight-medium);
    color: var(--color-text-primary);
}

.occurrence-amount[b-vedtpeaf3z] {
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
}

.occurrence-details[b-vedtpeaf3z] {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.occurrence-category[b-vedtpeaf3z] {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

/* Payment Details Modal */
.payment-details[b-vedtpeaf3z] {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.detail-row[b-vedtpeaf3z] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-border-light);
}

.detail-row:last-child[b-vedtpeaf3z] {
    border-bottom: none;
}

.detail-label[b-vedtpeaf3z] {
    color: var(--color-text-muted);
}

.detail-value[b-vedtpeaf3z] {
    font-weight: var(--font-weight-medium);
    color: var(--color-text-primary);
}

.detail-value.amount[b-vedtpeaf3z] {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
}

/* Splits Section */
.splits-section[b-vedtpeaf3z] {
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-md);
    padding: var(--space-md);
}

.splits-title[b-vedtpeaf3z] {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.splits-list[b-vedtpeaf3z] {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.split-row[b-vedtpeaf3z] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.split-contact[b-vedtpeaf3z] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.split-actions[b-vedtpeaf3z] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.split-amount[b-vedtpeaf3z] {
    font-weight: var(--font-weight-semibold);
}

.your-share[b-vedtpeaf3z] {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    text-align: right;
    margin-bottom: var(--space-md);
}

.add-split[b-vedtpeaf3z] {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.add-split .form-select[b-vedtpeaf3z] {
    flex: 1;
    min-width: 120px;
}

.add-split .input-group[b-vedtpeaf3z] {
    width: auto;
    flex-shrink: 0;
}

.add-split .input-group input[b-vedtpeaf3z] {
    width: 80px;
}

.btn-icon.btn-danger-icon[b-vedtpeaf3z] {
    width: 28px;
    height: 28px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: transparent;
    border: none;
    color: var(--color-danger);
    cursor: pointer;
}

.btn-icon.btn-danger-icon:hover[b-vedtpeaf3z] {
    background: rgba(239, 68, 68, 0.1);
}
/* /Pages/Categories/Index.razor.rz.scp.css */
/* Categories Page Styles */

.loading-container[b-durl3jzu55] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

/* Empty State */
.empty-state-container[b-durl3jzu55] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-2xl);
    min-height: 300px;
}

.empty-state-icon[b-durl3jzu55] {
    width: 80px;
    height: 80px;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.empty-state-container h3[b-durl3jzu55] {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-sm);
}

.empty-state-container p[b-durl3jzu55] {
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

/* Mobile Category Grid */
.category-grid[b-durl3jzu55] {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.category-card[b-durl3jzu55] {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    border: 1px solid var(--color-border-light);
    cursor: pointer;
    transition: box-shadow var(--transition-fast);
}

.category-card:hover[b-durl3jzu55] {
    box-shadow: var(--shadow-md);
}

.category-card-icon[b-durl3jzu55] {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--font-size-lg);
    flex-shrink: 0;
}

.category-card-name[b-durl3jzu55] {
    flex: 1;
    font-weight: var(--font-weight-medium);
    color: var(--color-text-primary);
}

.category-card-chevron[b-durl3jzu55] {
    color: var(--color-text-muted);
}

/* Desktop Table */
.table-container[b-durl3jzu55] {
    overflow-x: auto;
}

.color-dot[b-durl3jzu55] {
    width: 24px;
    height: 24px;
    border-radius: var(--radius-full);
    display: inline-block;
}

.actions-cell[b-durl3jzu55] {
    display: flex;
    gap: var(--space-xs);
    justify-content: flex-end;
}

/* Color Picker */
.color-picker[b-durl3jzu55] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.color-option[b-durl3jzu55] {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    border: 3px solid transparent;
    cursor: pointer;
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.color-option:hover[b-durl3jzu55] {
    transform: scale(1.1);
}

.color-option.selected[b-durl3jzu55] {
    border-color: var(--color-text-primary);
}

/* FAB (Floating Action Button) */
.fab[b-durl3jzu55] {
    position: fixed;
    bottom: calc(var(--nav-height-mobile) + var(--safe-area-bottom) + var(--space-md));
    right: var(--space-md);
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(91, 108, 255, 0.4);
    z-index: 50;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    cursor: pointer;
}

.fab:hover[b-durl3jzu55] {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(91, 108, 255, 0.5);
}

.fab:active[b-durl3jzu55] {
    transform: scale(0.95);
}
/* /Pages/Contacts/Index.razor.rz.scp.css */
/* Contacts Page Styles */

.loading-container[b-hevrv91hfd] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

/* Balances Section */
.balances-section[b-hevrv91hfd] {
    margin-bottom: var(--space-lg);
}

.section-title[b-hevrv91hfd] {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.balances-grid[b-hevrv91hfd] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: var(--space-sm);
}

.balance-card[b-hevrv91hfd] {
    background: linear-gradient(135deg, var(--color-warning), #f59e0b);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    color: white;
}

.balance-contact[b-hevrv91hfd] {
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-xs);
}

.balance-amount[b-hevrv91hfd] {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
}

.balance-count[b-hevrv91hfd] {
    font-size: var(--font-size-xs);
    opacity: 0.8;
}

/* Empty State */
.empty-state-container[b-hevrv91hfd] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-2xl);
    min-height: 300px;
}

.empty-state-icon[b-hevrv91hfd] {
    width: 80px;
    height: 80px;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.empty-state-container h3[b-hevrv91hfd] {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-sm);
}

.empty-state-container p[b-hevrv91hfd] {
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

/* Mobile Contact List */
.contact-list[b-hevrv91hfd] {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.contact-card[b-hevrv91hfd] {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    border: 1px solid var(--color-border-light);
    cursor: pointer;
    transition: box-shadow var(--transition-fast);
}

.contact-card:hover[b-hevrv91hfd] {
    box-shadow: var(--shadow-md);
}

.contact-avatar[b-hevrv91hfd] {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-sm);
    flex-shrink: 0;
}

.contact-avatar-sm[b-hevrv91hfd] {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-xs);
    flex-shrink: 0;
}

.contact-info[b-hevrv91hfd] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.contact-name[b-hevrv91hfd] {
    font-weight: var(--font-weight-medium);
    color: var(--color-text-primary);
}

.contact-detail[b-hevrv91hfd] {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Desktop Table */
.table-container[b-hevrv91hfd] {
    overflow-x: auto;
}

.contact-cell[b-hevrv91hfd] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.actions-cell[b-hevrv91hfd] {
    display: flex;
    gap: var(--space-xs);
    justify-content: flex-end;
}

/* Splits Modal */
.splits-tabs[b-hevrv91hfd] {
    display: flex;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
    padding: var(--space-xs);
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-md);
}

.splits-tab[b-hevrv91hfd] {
    flex: 1;
    padding: var(--space-sm) var(--space-md);
    border: none;
    background: transparent;
    color: var(--color-text-muted);
    border-radius: var(--radius-sm);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.splits-tab.active[b-hevrv91hfd] {
    background: var(--color-bg-secondary);
    color: var(--color-text-primary);
    box-shadow: var(--shadow-sm);
}

.splits-list[b-hevrv91hfd] {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    max-height: 400px;
    overflow-y: auto;
}

/* Month Grouping */
.month-group[b-hevrv91hfd] {
    background: var(--color-bg-secondary);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-light);
    overflow: hidden;
}

.month-header[b-hevrv91hfd] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    background: var(--color-bg-tertiary);
    border-bottom: 1px solid var(--color-border-light);
}

.month-name[b-hevrv91hfd] {
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
    font-size: var(--font-size-sm);
}

.month-subtotal[b-hevrv91hfd] {
    font-weight: var(--font-weight-semibold);
    color: var(--color-warning);
    font-size: var(--font-size-sm);
}

.split-item[b-hevrv91hfd] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid var(--color-border-light);
}

.month-group .split-item:last-child[b-hevrv91hfd] {
    border-bottom: none;
}

.split-info[b-hevrv91hfd] {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xs);
}

.split-payment[b-hevrv91hfd] {
    font-weight: var(--font-weight-medium);
    color: var(--color-text-primary);
}

.split-date[b-hevrv91hfd] {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.split-amount-actions[b-hevrv91hfd] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.split-amount[b-hevrv91hfd] {
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
}

.splits-total[b-hevrv91hfd] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    margin-top: var(--space-md);
    border-top: 2px solid var(--color-border);
    font-weight: var(--font-weight-semibold);
}

.splits-total-amount[b-hevrv91hfd] {
    font-size: var(--font-size-lg);
    color: var(--color-warning);
}

/* FAB (Floating Action Button) */
.fab[b-hevrv91hfd] {
    position: fixed;
    bottom: calc(var(--nav-height-mobile) + var(--safe-area-bottom) + var(--space-md));
    right: var(--space-md);
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(91, 108, 255, 0.4);
    z-index: 50;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    cursor: pointer;
}

.fab:hover[b-hevrv91hfd] {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(91, 108, 255, 0.5);
}

.fab:active[b-hevrv91hfd] {
    transform: scale(0.95);
}
/* /Pages/Home.razor.rz.scp.css */
/* Home Page - Dashboard Styles */

/* Loading State */
.loading-container[b-peur0gj579] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

/* Summary Cards Grid */
.summary-grid[b-peur0gj579] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
    .summary-grid[b-peur0gj579] {
        grid-template-columns: repeat(4, 1fr);
    }
}

.summary-card[b-peur0gj579] {
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
    transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

.summary-card:hover[b-peur0gj579] {
    box-shadow: var(--shadow-md);
}

.summary-card.status-success[b-peur0gj579] {
    border-color: var(--color-success);
    background: var(--color-success-bg);
}

.summary-card.status-success .summary-icon[b-peur0gj579] {
    background: var(--color-success);
    color: white;
}

.summary-card.status-danger[b-peur0gj579] {
    border-color: var(--color-danger);
    background: var(--color-danger-bg);
}

.summary-card.status-danger .summary-icon[b-peur0gj579] {
    background: var(--color-danger);
    color: white;
}

.summary-card.status-warning[b-peur0gj579] {
    border-color: var(--color-warning);
    background: var(--color-warning-bg);
}

.summary-card.status-warning .summary-icon[b-peur0gj579] {
    background: var(--color-warning);
    color: #1A1D29;
}

.summary-icon[b-peur0gj579] {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--color-primary-bg);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.summary-icon.budget-icon[b-peur0gj579] {
    background: var(--color-primary-bg);
    color: var(--color-primary);
}

.summary-icon.upcoming-icon[b-peur0gj579] {
    background: var(--color-info-bg);
    color: var(--color-info);
}

.summary-icon.muted-icon[b-peur0gj579] {
    background: var(--color-bg-tertiary);
    color: var(--color-text-muted);
}

.summary-content[b-peur0gj579] {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.summary-label[b-peur0gj579] {
    font-size: var(--font-size-xs);
    color: var(--color-text-secondary);
    margin-bottom: 2px;
}

.summary-value[b-peur0gj579] {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
}

.summary-sub[b-peur0gj579] {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
}

/* Dashboard Grid */
.dashboard-grid[b-peur0gj579] {
    display: grid;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
    .dashboard-grid[b-peur0gj579] {
        grid-template-columns: repeat(2, 1fr);
    }

    .trends-card[b-peur0gj579] {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .dashboard-grid[b-peur0gj579] {
        grid-template-columns: 2fr 1fr;
    }

    .trends-card[b-peur0gj579] {
        grid-column: span 1;
    }
}

/* Card Header Sub */
.card-header[b-peur0gj579] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header-sub[b-peur0gj579] {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    font-weight: var(--font-weight-normal);
}

/* Chart Container */
.chart-container[b-peur0gj579] {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 160px;
    gap: var(--space-sm);
    padding-bottom: var(--space-md);
    margin-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-border-light);
}

.chart-bar-wrapper[b-peur0gj579] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    height: 100%;
}

.chart-bar[b-peur0gj579] {
    width: 100%;
    max-width: 40px;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    min-height: 4px;
    margin-top: auto;
    transition: height var(--transition-slow);
}

.chart-label[b-peur0gj579] {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
}

.chart-value[b-peur0gj579] {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
}

/* Trend Stats */
.trend-stats[b-peur0gj579] {
    display: flex;
    gap: var(--space-xl);
}

.trend-stat[b-peur0gj579] {
    display: flex;
    flex-direction: column;
}

.trend-stat-label[b-peur0gj579] {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
}

.trend-stat-value[b-peur0gj579] {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
}

/* Category List */
.category-list[b-peur0gj579] {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.category-item[b-peur0gj579] {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.category-info[b-peur0gj579] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.category-dot[b-peur0gj579] {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

.category-name[b-peur0gj579] {
    flex: 1;
    font-size: var(--font-size-sm);
    color: var(--color-text-primary);
}

.category-amount[b-peur0gj579] {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
}

/* Payment List */
.payment-list[b-peur0gj579] {
    display: flex;
    flex-direction: column;
}

.payment-item[b-peur0gj579] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md);
    border-bottom: 1px solid var(--color-border-light);
}

.payment-item:last-child[b-peur0gj579] {
    border-bottom: none;
}

.payment-info[b-peur0gj579] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.payment-name[b-peur0gj579] {
    font-weight: var(--font-weight-medium);
    color: var(--color-text-primary);
}

.payment-date[b-peur0gj579] {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
}

/* Splits Summary */
.splits-summary[b-peur0gj579] {
    text-align: center;
    margin-bottom: var(--space-md);
}

.splits-total[b-peur0gj579] {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-warning);
    display: block;
}

.splits-label[b-peur0gj579] {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

/* Contact List */
.contact-list[b-peur0gj579] {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact-item[b-peur0gj579] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-border-light);
}

.contact-item:last-child[b-peur0gj579] {
    border-bottom: none;
}

.contact-name[b-peur0gj579] {
    color: var(--color-text-primary);
}

/* Quick Actions */
.quick-actions[b-peur0gj579] {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Empty State */
.empty-state[b-peur0gj579] {
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    text-align: center;
    padding: var(--space-lg) 0;
}

/* Welcome Page (Not Authorized) */
.welcome-container[b-peur0gj579] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - var(--nav-height-mobile) - var(--header-height-mobile) - var(--space-xl));
    padding: var(--space-xl);
}

@media (min-width: 1024px) {
    .welcome-container[b-peur0gj579] {
        min-height: calc(100vh - var(--space-xl) * 2);
    }
}

.welcome-content[b-peur0gj579] {
    text-align: center;
    max-width: 400px;
}

.welcome-icon[b-peur0gj579] {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-xl);
    background: linear-gradient(135deg, var(--color-primary-bg) 0%, var(--color-accent-bg) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.welcome-title[b-peur0gj579] {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-subtitle[b-peur0gj579] {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.welcome-actions[b-peur0gj579] {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

@media (min-width: 480px) {
    .welcome-actions[b-peur0gj579] {
        flex-direction: row;
        justify-content: center;
    }
}
/* /Pages/Payments/Create.razor.rz.scp.css */
/* Styles moved to base.css for reusability */
/* /Pages/Payments/Detail.razor.rz.scp.css */
/* Payment Detail Page Styles */

/* Fix header overflow on mobile */
.d-flex.justify-content-between.align-items-center.mb-4[b-jfcbat0if5] {
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.d-flex.justify-content-between.align-items-center.mb-4 h1[b-jfcbat0if5] {
    flex: 1;
    min-width: 0;
    word-break: break-word;
}

.d-flex.justify-content-between.align-items-center.mb-4 > div[b-jfcbat0if5] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

/* Table responsiveness */
.table[b-jfcbat0if5] {
    font-size: var(--text-sm);
}

.table-responsive-wrapper[b-jfcbat0if5] {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .d-flex.justify-content-between.align-items-center.mb-4[b-jfcbat0if5] {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .d-flex.justify-content-between.align-items-center.mb-4 > div[b-jfcbat0if5] {
        width: 100%;
        justify-content: flex-start;
    }

    .d-flex.justify-content-between.align-items-center.mb-4 > div .btn[b-jfcbat0if5] {
        flex: 1;
        min-width: 0;
    }

    /* Make tables scroll horizontally */
    .card-body[b-jfcbat0if5] {
        overflow-x: auto;
    }

    .table[b-jfcbat0if5] {
        min-width: 400px;
    }
}
/* /Pages/Payments/Index.razor.rz.scp.css */
/* Payments Page Styles */

.loading-container[b-iy8y5j0cwt] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

/* Empty State */
.empty-state-container[b-iy8y5j0cwt] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-2xl);
    min-height: 300px;
}

.empty-state-icon[b-iy8y5j0cwt] {
    width: 80px;
    height: 80px;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.empty-state-container h3[b-iy8y5j0cwt] {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-sm);
}

.empty-state-container p[b-iy8y5j0cwt] {
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

/* Mobile Payment Cards */
.payment-cards[b-iy8y5j0cwt] {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.payment-card[b-iy8y5j0cwt] {
    display: block;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    text-decoration: none;
    border: 1px solid var(--color-border-light);
    transition: box-shadow var(--transition-fast);
}

.payment-card:hover[b-iy8y5j0cwt] {
    box-shadow: var(--shadow-md);
}

.payment-card.inactive[b-iy8y5j0cwt] {
    opacity: 0.6;
}

.payment-card-header[b-iy8y5j0cwt] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-sm);
}

.payment-name[b-iy8y5j0cwt] {
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
}

.payment-amount[b-iy8y5j0cwt] {
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
}

.payment-card-details[b-iy8y5j0cwt] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-category[b-iy8y5j0cwt] {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.payment-badges[b-iy8y5j0cwt] {
    display: flex;
    gap: var(--space-xs);
}

/* Desktop Table */
.table-container[b-iy8y5j0cwt] {
    overflow-x: auto;
}

.row-inactive[b-iy8y5j0cwt] {
    opacity: 0.6;
}

.actions-cell[b-iy8y5j0cwt] {
    display: flex;
    gap: var(--space-xs);
    justify-content: flex-end;
}
/* /Pages/Providers/Index.razor.rz.scp.css */
/* Providers Page Styles */

.loading-container[b-943roqwgkk] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

/* Empty State */
.empty-state-container[b-943roqwgkk] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-2xl);
    min-height: 300px;
}

.empty-state-icon[b-943roqwgkk] {
    width: 80px;
    height: 80px;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.empty-state-container h3[b-943roqwgkk] {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-sm);
}

.empty-state-container p[b-943roqwgkk] {
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

/* Mobile Provider List */
.provider-list[b-943roqwgkk] {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.provider-card[b-943roqwgkk] {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    border: 1px solid var(--color-border-light);
    cursor: pointer;
    transition: box-shadow var(--transition-fast);
}

.provider-card:hover[b-943roqwgkk] {
    box-shadow: var(--shadow-md);
}

.provider-card-icon[b-943roqwgkk] {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--color-bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    flex-shrink: 0;
}

.provider-card-content[b-943roqwgkk] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.provider-name[b-943roqwgkk] {
    font-weight: var(--font-weight-medium);
    color: var(--color-text-primary);
}

.provider-card-chevron[b-943roqwgkk] {
    color: var(--color-text-muted);
}

/* Desktop Table */
.table-container[b-943roqwgkk] {
    overflow-x: auto;
}

.actions-cell[b-943roqwgkk] {
    display: flex;
    gap: var(--space-xs);
    justify-content: flex-end;
}

/* FAB (Floating Action Button) */
.fab[b-943roqwgkk] {
    position: fixed;
    bottom: calc(var(--nav-height-mobile) + var(--safe-area-bottom) + var(--space-md));
    right: var(--space-md);
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(91, 108, 255, 0.4);
    z-index: 50;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    cursor: pointer;
}

.fab:hover[b-943roqwgkk] {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(91, 108, 255, 0.5);
}

.fab:active[b-943roqwgkk] {
    transform: scale(0.95);
}
/* /Pages/RecurringRules/Index.razor.rz.scp.css */
/* Recurring Rules Page Styles */

/* Mobile Page Header */
.mobile-page-header[b-hmlv96qndo] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.mobile-page-header .page-title[b-hmlv96qndo] {
    font-size: var(--font-size-xl);
    margin: 0;
}

/* Filter Card */
.filter-card[b-hmlv96qndo] {
    margin-bottom: var(--space-lg);
}

.filter-card .card-body[b-hmlv96qndo] {
    padding: var(--space-sm) var(--space-md);
}

/* Rules List */
.rules-list[b-hmlv96qndo] {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.rule-card[b-hmlv96qndo] {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    transition: all var(--transition-normal);
}

.rule-card.income[b-hmlv96qndo] {
    border-left: 3px solid var(--color-success);
}

.rule-card.expense[b-hmlv96qndo] {
    border-left: 3px solid var(--color-danger);
}

.rule-card.inactive[b-hmlv96qndo] {
    opacity: 0.6;
    background: var(--color-bg-tertiary);
}

.rule-header[b-hmlv96qndo] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-sm);
}

.rule-info[b-hmlv96qndo] {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.rule-name[b-hmlv96qndo] {
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-md);
}

.category-badge[b-hmlv96qndo] {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    background: var(--color-bg-tertiary);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    width: fit-content;
}

.rule-amount[b-hmlv96qndo] {
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-lg);
    white-space: nowrap;
}

.rule-details[b-hmlv96qndo] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
}

.detail-item[b-hmlv96qndo] {
    display: flex;
    align-items: center;
    gap: 4px;
}

.detail-item svg[b-hmlv96qndo] {
    color: var(--color-text-muted);
}

.rule-actions[b-hmlv96qndo] {
    display: flex;
    gap: var(--space-xs);
    flex-wrap: wrap;
}

/* Badge styles */
.badge-secondary[b-hmlv96qndo] {
    background: rgba(156, 163, 175, 0.15);
    color: var(--color-text-secondary);
}

/* Text colors */
.text-success[b-hmlv96qndo] {
    color: var(--color-success);
}

.text-danger[b-hmlv96qndo] {
    color: var(--color-danger);
}

.text-muted[b-hmlv96qndo] {
    color: var(--color-text-muted);
}
/* /Pages/Transactions/Index.razor.rz.scp.css */
/* Transactions Page Specific Styles */

/* Mobile Page Header */
.mobile-page-header[b-wpbwhouz79] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.mobile-page-header .page-title[b-wpbwhouz79] {
    font-size: var(--font-size-xl);
    margin: 0;
}

/* Period Selector */
.period-selector-card[b-wpbwhouz79] {
    margin-bottom: var(--space-lg);
}

.period-selector-card .card-body[b-wpbwhouz79] {
    padding: var(--space-sm);
}

.period-selector-card .btn-group[b-wpbwhouz79] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.period-selector-card .btn-group .btn[b-wpbwhouz79] {
    flex: 1;
    min-width: 70px;
}

/* Month Navigation */
.month-nav[b-wpbwhouz79] {
    display: flex;
    justify-content: center;
    width: 100%;
}

.month-nav .btn:first-child[b-wpbwhouz79],
.month-nav .btn:last-child[b-wpbwhouz79] {
    flex: 0 0 auto;
    min-width: 50px;
}

.month-nav .month-display[b-wpbwhouz79] {
    flex: 1;
    min-width: 150px;
    font-weight: 600;
    pointer-events: none;
}

/* Transaction List (Mobile) */
.transaction-list[b-wpbwhouz79] {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

/* Table Styles */
.row-paid td:nth-child(2)[b-wpbwhouz79],
.row-paid td:nth-child(4)[b-wpbwhouz79] {
    text-decoration: line-through;
    opacity: 0.7;
}

.row-override[b-wpbwhouz79] {
    border-left: 3px dashed var(--color-primary);
}

.actions-cell[b-wpbwhouz79] {
    display: flex;
    gap: var(--space-xs);
    justify-content: flex-end;
}

/* Badge styles */
.badge-info[b-wpbwhouz79] {
    background: rgba(91, 108, 255, 0.15);
    color: var(--color-primary);
}

/* FAB spacer for mobile view */
.fab-spacer[b-wpbwhouz79] {
    height: 80px;
}

@media (min-width: 769px) {
    .fab-spacer[b-wpbwhouz79] {
        display: none;
    }
}

/* Form control static display */
.form-control-static[b-wpbwhouz79] {
    padding: var(--space-sm) 0;
    margin-bottom: 0;
    border: none;
    background: none;
}

/* One-off transaction row styles */
.row-one-off[b-wpbwhouz79] {
    border-left: 3px solid var(--color-secondary);
}

.row-one-off.row-income[b-wpbwhouz79] {
    border-left-color: var(--color-success, #28a745);
}

.row-one-off.row-expense[b-wpbwhouz79] {
    border-left-color: var(--color-danger, #dc3545);
}

/* Income/Expense row backgrounds */
.row-income[b-wpbwhouz79] {
    background: rgba(40, 167, 69, 0.08);
}

.row-expense[b-wpbwhouz79] {
    background: rgba(220, 53, 69, 0.08);
}

/* One-off Transaction Card (Mobile) */
.transaction-card.one-off-transaction[b-wpbwhouz79] {
    background: var(--surface-color);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border-left: 3px solid var(--color-secondary);
}

.transaction-card.one-off-transaction.transaction-income[b-wpbwhouz79] {
    background: rgba(40, 167, 69, 0.08);
    border-left-color: var(--color-success, #28a745);
}

.transaction-card.one-off-transaction.transaction-expense[b-wpbwhouz79] {
    background: rgba(220, 53, 69, 0.08);
    border-left-color: var(--color-danger, #dc3545);
}

.transaction-card.one-off-transaction:active[b-wpbwhouz79] {
    transform: scale(0.98);
}

.transaction-card-content[b-wpbwhouz79] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-md);
}

.transaction-info[b-wpbwhouz79] {
    display: flex;
    flex-direction: column;
    gap: var(--space-xxs);
    flex: 1;
    min-width: 0;
}

.transaction-date[b-wpbwhouz79] {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
}

.transaction-name[b-wpbwhouz79] {
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.transaction-category[b-wpbwhouz79] {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.transaction-amount[b-wpbwhouz79] {
    font-weight: 600;
    font-size: var(--font-size-lg);
    white-space: nowrap;
}

/* Transaction amounts area with running balance */
.transaction-amounts[b-wpbwhouz79] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--space-xxs);
}

.transaction-balance[b-wpbwhouz79] {
    font-size: var(--font-size-sm);
    font-weight: 500;
    opacity: 0.8;
}

.transaction-badge[b-wpbwhouz79] {
    margin-top: var(--space-sm);
}

/* Empty state actions */
.empty-state-actions[b-wpbwhouz79] {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* FAB Speed Dial */
.fab-container[b-wpbwhouz79] {
    position: fixed;
    bottom: calc(var(--space-xl) + 60px);
    right: var(--space-lg);
    z-index: 100;
}

.fab-backdrop[b-wpbwhouz79] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.fab[b-wpbwhouz79] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: var(--color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s, background 0.3s;
}

.fab:hover[b-wpbwhouz79] {
    background: var(--color-primary-dark);
}

.fab.fab-open[b-wpbwhouz79] {
    background: var(--color-danger);
}

.fab-options[b-wpbwhouz79] {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
    pointer-events: none;
}

.fab-options.fab-options-open[b-wpbwhouz79] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.fab-option[b-wpbwhouz79] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--surface-color);
    border: none;
    border-radius: var(--radius-full);
    padding: var(--space-sm) var(--space-md);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.2s;
}

.fab-option:active[b-wpbwhouz79] {
    transform: scale(0.95);
}

.fab-option-label[b-wpbwhouz79] {
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.fab-option-icon[b-wpbwhouz79] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Starting Balance Card Styles */
.starting-balance-card[b-wpbwhouz79] {
    position: relative;
}

.starting-balance-card.simulated-mode[b-wpbwhouz79] {
    border: 2px dashed var(--color-warning, #ffc107);
    background: rgba(255, 193, 7, 0.05);
}

.summary-label-row[b-wpbwhouz79] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.summary-label-row .btn-link[b-wpbwhouz79] {
    color: var(--text-muted);
    opacity: 0.7;
    transition: opacity 0.2s;
}

.summary-label-row .btn-link:hover[b-wpbwhouz79] {
    opacity: 1;
}

/* Starting Balance Form */
.starting-balance-form[b-wpbwhouz79] {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.starting-balance-form hr[b-wpbwhouz79] {
    margin: var(--space-sm) 0;
    border-color: var(--border-color, #dee2e6);
}

/* Badge for simulated mode */
.badge-warning[b-wpbwhouz79] {
    background: rgba(255, 193, 7, 0.15);
    color: #856404;
}
