@import '_content/Blazored.Modal/Blazored.Modal.bundle.scp.css';
@import '_content/Blazored.Toast/Blazored.Toast.bundle.scp.css';
@import '_content/Lookif.Component.DateTimePicker/Lookif.Component.DateTimePicker.ksg7uynyyd.bundle.scp.css';
@import '_content/Lookif.Component.DropDown/Lookif.Component.DropDown.a7xnl1sgav.bundle.scp.css';
@import '_content/Lookif.UI.Component/Lookif.UI.Component.xv207vxsdx.bundle.scp.css';

/* _content/ExpenseManagement.UI/Pages/Accounts/Account.razor.rz.scp.css */
.accounts-container[b-5h0j9h9d6k] {
    padding: 2rem;
    direction: rtl; 
}

.accounts-header[b-5h0j9h9d6k] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.account-card[b-5h0j9h9d6k] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

    .account-card:hover[b-5h0j9h9d6k] {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        border-color: #e0e0e0;
    }

    .account-card[b-5h0j9h9d6k]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #1976d2, #2196f3);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .account-card:hover[b-5h0j9h9d6k]::before {
        opacity: 1;
    }

.account-card-header[b-5h0j9h9d6k] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.account-title[b-5h0j9h9d6k] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .account-title .icon[b-5h0j9h9d6k] {
        width: 24px;
        height: 24px;
        color: #1976d2;
    }

    .account-title h3[b-5h0j9h9d6k] {
        margin: 0;
        font-size: 1.2rem;
        color: #1a1a1a;
        font-weight: 600;
    }

.account-status[b-5h0j9h9d6k] {
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.status-public[b-5h0j9h9d6k] {
    background-color: #e3f2fd;
    color: #1976d2;
}

.status-private[b-5h0j9h9d6k] {
    background-color: #fce4ec;
    color: #c2185b;
}

.account-balance[b-5h0j9h9d6k] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.2s ease;
}

    .account-balance:hover[b-5h0j9h9d6k] {
        background: #f1f3f5;
    }

.balance-icon[b-5h0j9h9d6k] {
    width: 44px;
    height: 44px;
    background: #e3f2fd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1976d2;
    transition: all 0.2s ease;
}

    .account-balance:hover .balance-icon[b-5h0j9h9d6k] {
        background: #bbdefb;
        transform: scale(1.05);
    }

.balance-info[b-5h0j9h9d6k] {
    flex: 1;
}

.balance-label[b-5h0j9h9d6k] {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.balance-amount-container[b-5h0j9h9d6k] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.balance-amount[b-5h0j9h9d6k] {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.btn-reveal[b-5h0j9h9d6k] {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: #666;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

    .btn-reveal:hover[b-5h0j9h9d6k] {
        background: rgba(0,0,0,0.05);
        color: #1976d2;
    }

    .btn-reveal .icon[b-5h0j9h9d6k] {
        width: 20px;
        height: 20px;
    }

.account-details[b-5h0j9h9d6k] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-item[b-5h0j9h9d6k] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

    .detail-item i[b-5h0j9h9d6k] {
        margin-left: 0.5rem;
    }

.account-details-modal[b-5h0j9h9d6k] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    z-index: 1000;
}

    .account-details-modal.show[b-5h0j9h9d6k] {
        opacity: 1;
        visibility: visible;
    }

.modal-content[b-5h0j9h9d6k] {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    direction: rtl;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.account-details-modal.show .modal-content[b-5h0j9h9d6k] {
    transform: translateY(0);
}

.modal-header[b-5h0j9h9d6k] {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    border-radius: 16px 16px 0 0;
}

.modal-title[b-5h0j9h9d6k] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .modal-title i[b-5h0j9h9d6k] {
        color: #1976d2;
        font-size: 1.5rem;
    }

    .modal-title h3[b-5h0j9h9d6k] {
        margin: 0;
        color: #333;
        font-size: 1.4rem;
        font-weight: 600;
    }

.icon[b-5h0j9h9d6k] {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.modal-title .icon[b-5h0j9h9d6k] {
    width: 28px;
    height: 28px;
    color: #1976d2;
}

.section-header .icon[b-5h0j9h9d6k] {
    width: 22px;
    height: 22px;
    color: #1976d2;
}

.info-icon[b-5h0j9h9d6k] {
    width: 40px;
    height: 40px;
    background: #e3f2fd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1976d2;
}

.info-icon .icon[b-5h0j9h9d6k] {
    width: 24px;
    height: 24px;
}

.close-button[b-5h0j9h9d6k] {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

    .close-button:hover[b-5h0j9h9d6k] {
        background: rgba(0,0,0,0.05);
        color: #333;
    }

    .close-button .icon[b-5h0j9h9d6k] {
        width: 20px;
        height: 20px;
    }

.modal-body[b-5h0j9h9d6k] {
    padding: 2rem;
}

.section-header[b-5h0j9h9d6k] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

    .section-header i[b-5h0j9h9d6k] {
        color: #1976d2;
        font-size: 1.2rem;
    }

    .section-header h4[b-5h0j9h9d6k] {
        color: #333;
        margin: 0;
        font-size: 1.1rem;
        font-weight: 600;
    }

.info-grid[b-5h0j9h9d6k] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.info-item[b-5h0j9h9d6k] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.2s ease;
}

    .info-item:hover[b-5h0j9h9d6k] {
        background: #f1f3f5;
        transform: translateY(-2px);
    }

.info-content[b-5h0j9h9d6k] {
    flex: 1;
}

    .info-content label[b-5h0j9h9d6k] {
        display: block;
        color: #666;
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }

    .info-content span[b-5h0j9h9d6k] {
        color: #333;
        font-weight: 500;
        font-size: 1.1rem;
    }

.account-actions[b-5h0j9h9d6k] {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    justify-content: flex-end;
}

@media (max-width: 767px) {
    .account-actions[b-5h0j9h9d6k] {
        flex-direction: column;
        gap: 0.75rem;
    }

    .account-actions .btn[b-5h0j9h9d6k] {
        width: 100%;
        justify-content: center;
    }
}

.btn[b-5h0j9h9d6k] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease; 
    font-size: 0.95rem;
    min-width: 140px;
    justify-content: center;
}

.btn .icon[b-5h0j9h9d6k] {
    width: 20px;
    height: 20px;
}

.btn-edit[b-5h0j9h9d6k] {
    background-color: #e3f2fd;
    color: #1976d2;
}

.btn-edit:hover[b-5h0j9h9d6k] {
    background-color: #bbdefb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.15);
}

.btn-delete[b-5h0j9h9d6k] {
    background-color: #fce4ec;
    color: #c2185b;
}

.btn-delete:hover[b-5h0j9h9d6k] {
    background-color: #f8bbd0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(194, 24, 91, 0.15);
}

.btn-add[b-5h0j9h9d6k] {
    background: linear-gradient(135deg, #1976d2, #2196f3);
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.2);
    font-weight: 500;
}

.btn-add:hover[b-5h0j9h9d6k] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.3);
    background: linear-gradient(135deg, #1565c0, #1e88e5);
}

.btn-add .icon[b-5h0j9h9d6k] {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.btn-add:hover .icon[b-5h0j9h9d6k] {
    transform: rotate(90deg);
}

@media (max-width: 767px) {
    .btn-add[b-5h0j9h9d6k] {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    .btn-add .icon[b-5h0j9h9d6k] {
        width: 18px;
        height: 18px;
    }

    .accounts-header[b-5h0j9h9d6k] {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .accounts-header h2[b-5h0j9h9d6k] {
        text-align: center;
        margin-bottom: 0.5rem;
    }
}

.empty-state[b-5h0j9h9d6k] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh; 
    text-align: center;
}

.empty-state-content[b-5h0j9h9d6k] {
    max-width: 500px;
    padding: 3rem;
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.empty-state-content:hover[b-5h0j9h9d6k] {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.empty-state-icon[b-5h0j9h9d6k] {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: #e3f2fd;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1976d2;
    transition: all 0.3s ease;
}

.empty-state-content:hover .empty-state-icon[b-5h0j9h9d6k] {
    transform: scale(1.1);
    background: #bbdefb;
}

.empty-state-icon .icon[b-5h0j9h9d6k] {
    width: 40px;
    height: 40px;
}

.empty-state h2[b-5h0j9h9d6k] {
    color: #1a1a1a;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.empty-state p[b-5h0j9h9d6k] {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-primary[b-5h0j9h9d6k] {
    background: linear-gradient(135deg, #1976d2, #2196f3);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.btn-primary:hover[b-5h0j9h9d6k] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

.btn-primary .icon[b-5h0j9h9d6k] {
    width: 24px;
    height: 24px;
    fill: currentColor;
}
/* _content/ExpenseManagement.UI/Pages/Accounts/ManageAccount.razor.rz.scp.css */
.close-button[b-ss2pro0tws] {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

    .close-button:hover[b-ss2pro0tws] {
        background: rgba(0,0,0,0.05);
        color: #333;
    }

    .close-button .icon[b-ss2pro0tws] {
        width: 20px;
        height: 20px;
    }

@media (max-width: 767px) {
    .close-button[b-ss2pro0tws] {
        width: 32px;
        height: 32px;
        padding: 0.4rem;
    }

        .close-button .icon[b-ss2pro0tws] {
            width: 18px;
            height: 18px;
        }
}

.manage-account-modal[b-ss2pro0tws] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1000;
}

    .manage-account-modal.show[b-ss2pro0tws] {
        opacity: 1;
        visibility: visible;
    }

.modal-content[b-ss2pro0tws] {
    background: white;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    direction: rtl;
}

.modal-header[b-ss2pro0tws] {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .modal-header h3[b-ss2pro0tws] {
        margin: 0;
        color: #333;
    }

.close-button[b-ss2pro0tws] {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    margin-right: auto;
    margin-left: 1rem;
}

.modal-body[b-ss2pro0tws] {
    padding: 1.5rem;
}

.form-group[b-ss2pro0tws] {
    margin-bottom: 1.5rem;
    position: relative;
}

    .form-group label[b-ss2pro0tws] {
        display: block;
        margin-bottom: 0.5rem;
        color: #333;
        font-weight: 500;
    }

.form-control[b-ss2pro0tws] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .form-control:focus[b-ss2pro0tws] {
        outline: none;
        border-color: #1976d2;
        box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.2);
    }

/* Custom Select Styling */
.custom-select[b-ss2pro0tws] {
    position: relative;
    width: 100%;
    cursor: pointer;
}

.select-selected[b-ss2pro0tws] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .select-selected:hover[b-ss2pro0tws] {
        border-color: #1976d2;
    }

.select-arrow[b-ss2pro0tws] {
    color: #666;
    transition: transform 0.3s ease;
}

    .select-arrow.rotate[b-ss2pro0tws] {
        transform: rotate(180deg);
    }

.select-items[b-ss2pro0tws] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 0.25rem;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    .select-items.show[b-ss2pro0tws] {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

.select-item[b-ss2pro0tws] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .select-item:hover[b-ss2pro0tws] {
        background-color: #f5f5f5;
    }

    .select-item.selected[b-ss2pro0tws] {
        background-color: #e3f2fd;
        color: #1976d2;
    }

.check-icon[b-ss2pro0tws] {
    color: #1976d2;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.select-item.selected .check-icon[b-ss2pro0tws] {
    opacity: 1;
}

.validation-message[b-ss2pro0tws] {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.error-message[b-ss2pro0tws] {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.form-actions[b-ss2pro0tws] {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: flex-end;
}

.btn[b-ss2pro0tws] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-primary[b-ss2pro0tws] {
    background-color: #1976d2;
    color: white;
}

    .btn-primary:hover[b-ss2pro0tws] {
        background-color: #1565c0;
        transform: translateY(-1px);
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

.btn-secondary[b-ss2pro0tws] {
    background-color: #6c757d;
    color: white;
}

    .btn-secondary:hover[b-ss2pro0tws] {
        background-color: #5a6268;
        transform: translateY(-1px);
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

.required[b-ss2pro0tws] {
    color: #dc3545;
    margin-right: 4px;
}

.custom-select.invalid .select-selected[b-ss2pro0tws] {
    border-color: #dc3545;
    background-color: #fff8f8;
}

.validation-summary-errors[b-ss2pro0tws] {
    color: #dc3545;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

    .validation-summary-errors ul[b-ss2pro0tws] {
        margin: 0;
        padding-right: 1.5rem;
    }

    .validation-summary-errors li[b-ss2pro0tws] {
        margin-bottom: 0.5rem;
    }

        .validation-summary-errors li:last-child[b-ss2pro0tws] {
            margin-bottom: 0;
        }
/* _content/ExpenseManagement.UI/Pages/Events/EventDetailsPage.razor.rz.scp.css */
.event-header[b-nxp5dr43ge] {
    position: relative;
}

.event-dates[b-nxp5dr43ge] {
    position: relative;
    margin-bottom: 2rem;
}

.date-container[b-nxp5dr43ge] {
    display: flex;
    gap: 1rem;
}

.date-item[b-nxp5dr43ge] {
    flex: 1;
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.date-label[b-nxp5dr43ge] {
    background-color: #e9ecef;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    color: #495057;
    font-weight: 500;
    border-bottom: 1px solid #dee2e6;
}

.date-value[b-nxp5dr43ge] {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    font-size: 0.95rem;
    color: #212529;
}

    .date-value .icon[b-nxp5dr43ge] {
        width: 16px;
        height: 16px;
        opacity: 0.7;
    }

.ribbon[b-nxp5dr43ge] {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #dc3545;
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    border-radius: 0 0 0.5rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1;
}

    .ribbon[b-nxp5dr43ge]::before {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        border-top: 10px solid #dc3545;
        border-left: 10px solid transparent;
    }

    .ribbon[b-nxp5dr43ge]::after {
        content: '';
        position: absolute;
        top: 0;
        right: -10px;
        border-bottom: 10px solid #dc3545;
        border-right: 10px solid transparent;
    }

.event-description[b-nxp5dr43ge] {
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    padding: 1rem;
    border: 1px solid #e9ecef;
}

.description-content[b-nxp5dr43ge] {
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.6;
    white-space: pre-line;
}

.participants-grid[b-nxp5dr43ge] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.75rem;
}

.participant-card[b-nxp5dr43ge] {
    background-color: #f8f9fa;
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
}

    .participant-card:hover[b-nxp5dr43ge] {
        background-color: #e9ecef;
        transform: translateY(-2px);
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

    .participant-card span[b-nxp5dr43ge] {
        color: #495057;
        font-weight: 500;
    }

.badge[b-nxp5dr43ge] {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    font-weight: 500;
}

.expenses-grid[b-nxp5dr43ge] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .expenses-grid[b-nxp5dr43ge] {
        grid-template-columns: repeat(2, 1fr);
    }
}

.expense-card[b-nxp5dr43ge] {
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    border: 1px solid #dee2e6;
    transition: all 0.2s ease;
    overflow: hidden;
}

    .expense-card:hover[b-nxp5dr43ge] {
        background-color: #e9ecef;
        transform: translateY(-2px);
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

.expense-header[b-nxp5dr43ge] {
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.expense-title[b-nxp5dr43ge] {
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
}

.expense-actions[b-nxp5dr43ge] {
    display: flex;
    gap: 0.5rem;
}

.expense-content[b-nxp5dr43ge] {
    padding: 1rem;
}

.expense-main-info[b-nxp5dr43ge] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.expense-amount[b-nxp5dr43ge] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0d6efd;
}

.expense-datetime[b-nxp5dr43ge] {
    font-size: 0.9rem;
    color: #6c757d;
}

.expense-details[b-nxp5dr43ge] {
    margin: 0.75rem 0;
}

.expense-detail-item[b-nxp5dr43ge] {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    background-color: #f8f9fa;
    border-radius: 0.375rem;
    border: 1px solid #e9ecef;
    font-size: 0.875rem;
    color: #495057;
    height: 100%;
    transition: all 0.2s ease;
}

    .expense-detail-item:hover[b-nxp5dr43ge] {
        background-color: #e9ecef;
        border-color: #dee2e6;
    }

    .expense-detail-item .icon[b-nxp5dr43ge] {
        width: 14px;
        height: 14px;
        opacity: 0.7;
        flex-shrink: 0;
    }

    .expense-detail-item span[b-nxp5dr43ge] {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: center;
        flex: 1;
    }

.expense-shares[b-nxp5dr43ge] {
    border-top: 1px solid #dee2e6;
    padding-top: 0.75rem;
}

    .expense-shares .btn-link[b-nxp5dr43ge] {
        text-decoration: none;
        font-size: 0.9rem;
    }

        .expense-shares .btn-link:hover[b-nxp5dr43ge] {
            color: #0d6efd !important;
        }

    .expense-shares.no-shares[b-nxp5dr43ge] {
        padding-top: 0.75rem;
    }

        .expense-shares.no-shares .btn[b-nxp5dr43ge] {
            font-size: 0.85rem;
            padding: 0.25rem 0.75rem;
        }

        .expense-shares.no-shares .icon[b-nxp5dr43ge] {
            width: 16px;
            height: 16px;
            opacity: 0.8;
        }

.icon[b-nxp5dr43ge] {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

.btn-link .icon[b-nxp5dr43ge] {
    width: 14px;
    height: 14px;
}

.card[b-nxp5dr43ge] {
    position: relative;
    overflow: hidden;
}

.financial-report[b-nxp5dr43ge] {
    /* Removing max-height and overflow-y to prevent scrolling */
}

.financial-item[b-nxp5dr43ge] {
    padding: 0.75rem;
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
}

    .financial-item:hover[b-nxp5dr43ge] {
        background-color: #e9ecef;
        transform: translateY(-2px);
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

    .financial-item .participant-info[b-nxp5dr43ge] {
        font-weight: 500;
        color: #495057;
    }

    .financial-item .amount[b-nxp5dr43ge] {
        font-weight: 600;
    }

.financial-summary[b-nxp5dr43ge] {
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    padding: 1rem;
    border: 1px solid #e9ecef;
}

.summary-item[b-nxp5dr43ge] {
    background-color: white;
    border-radius: 0.375rem;
    padding: 0.75rem;
    border: 1px solid #e9ecef;
    height: 100%;
}

    .summary-item.warning[b-nxp5dr43ge] {
        background-color: #fff3cd;
        border-color: #ffecb5;
    }

.summary-label[b-nxp5dr43ge] {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

.summary-value[b-nxp5dr43ge] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
}

.summary-item.warning .summary-value[b-nxp5dr43ge] {
    color: #856404;
}
/* _content/ExpenseManagement.UI/Pages/Events/EventPage.razor.rz.scp.css */
[b-bzofkhhydp] .event-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border-radius: 12px;
    overflow: hidden;
}

[b-bzofkhhydp] .event-card:hover { 
    box-shadow: 0 8px 16px rgba(0,0,0,0.1) !important;
}

[b-bzofkhhydp] .event-card.expired {
    opacity: 0.8;
    background-color: #f8f9fa !important;
}

[b-bzofkhhydp] .event-card.expired:hover {
    opacity: 1;
}

[b-bzofkhhydp] .expired-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #dc3545 !important;
    color: white !important;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    z-index: 1;
}

[b-bzofkhhydp] .card-title {
    color: #2c3e50;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

[b-bzofkhhydp] .event-date {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

[b-bzofkhhydp] .event-description {
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

[b-bzofkhhydp] .participants-badge {
    background-color: #e3f2fd !important;
    color: #1976d2 !important;
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
}

[b-bzofkhhydp] .card-footer {
    background-color: #f8f9fa !important;
    border-top: 1px solid rgba(0,0,0,0.05) !important;
    padding: 1rem;
}

[b-bzofkhhydp] .btn-outline-primary, 
[b-bzofkhhydp] .btn-outline-success {
    border-radius: 20px;
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
    transition: all 0.2s ease-in-out;
}

[b-bzofkhhydp] .btn-outline-primary:hover, 
[b-bzofkhhydp] .btn-outline-success:hover {
    transform: translateY(-2px);
}

[b-bzofkhhydp] .spinner-border {
    width: 3rem;
    height: 3rem;
}

[b-bzofkhhydp] .alert-info {
    background-color: #e8f4f8;
    border-color: #bee5eb;
    color: #0c5460;
}

[b-bzofkhhydp] .empty-state-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    padding: 2rem;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin: 2rem 0;
}

[b-bzofkhhydp] .empty-state-content {
    text-align: center;
    max-width: 500px;
    padding: 2rem;
}

[b-bzofkhhydp] .empty-state-icon {
    width: 120px;
    height: 120px;
    color: #6c757d;
    margin-bottom: 1.5rem;
    animation: float-b-bzofkhhydp 3s ease-in-out infinite;
}

[b-bzofkhhydp] .empty-state-title {
    color: #2c3e50;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

[b-bzofkhhydp] .empty-state-description {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

[b-bzofkhhydp] .create-event-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 12px;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(74, 144, 226, 0.2);
}

[b-bzofkhhydp] .create-event-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(74, 144, 226, 0.3);
    background: linear-gradient(135deg, #357abd, #2a5f94);
}

[b-bzofkhhydp] .btn-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

@keyframes float-b-bzofkhhydp {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.btn-create-event[b-bzofkhhydp] {
    background: linear-gradient(135deg, #1976d2, #2196f3);
    color: white;
    border: none;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.2);
    font-weight: 500;
}

.btn-create-event:hover[b-bzofkhhydp] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.3);
    background: linear-gradient(135deg, #1565c0, #1e88e5);
}

.btn-create-event .icon[b-bzofkhhydp] {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.btn-create-event:hover .icon[b-bzofkhhydp] {
    transform: rotate(90deg);
}

@media (max-width: 767px) {
    .btn-create-event[b-bzofkhhydp] {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .btn-create-event .icon[b-bzofkhhydp] {
        width: 18px;
        height: 18px;
    }
} 
/* _content/ExpenseManagement.UI/Pages/Events/ManageEventModal.razor.rz.scp.css */
.modal-content[b-zqzqnwtsoe] {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: none;
    direction: rtl;
}

.modal-header[b-zqzqnwtsoe] {
    border-bottom: 2px solid #f0f0f0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border-radius: 16px 16px 0 0;
}

.modal-title[b-zqzqnwtsoe] {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0; 
}

.btn-close[b-zqzqnwtsoe] {
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.btn-close:hover[b-zqzqnwtsoe] {
    opacity: 1;
}

.modal-body[b-zqzqnwtsoe] {
    padding: 2rem;
}

.form-label[b-zqzqnwtsoe] {
    color: #2d3748;
    font-weight: 500;
    margin-bottom: 0.5rem; 
}

.form-control[b-zqzqnwtsoe] {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.2s ease; 
}

.form-control:focus[b-zqzqnwtsoe] {
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-control[b-zqzqnwtsoe]::placeholder {
    color: #a0aec0;
}

.validation-message[b-zqzqnwtsoe] {
    color: #e53e3e;
    font-size: 0.875rem;
    margin-top: 0.25rem; 
}

.modal-footer[b-zqzqnwtsoe] {
    border-top: 2px solid #f0f0f0;
    padding: 1.5rem;
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
}

.btn[b-zqzqnwtsoe] {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease; 
    font-size: 1rem;
}

.btn-primary[b-zqzqnwtsoe] {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border: none;
    color: white;
}

.btn-primary:hover[b-zqzqnwtsoe] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

.btn-secondary[b-zqzqnwtsoe] {
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    color: #4a5568;
}

.btn-secondary:hover[b-zqzqnwtsoe] {
    background: #edf2f7;
    transform: translateY(-1px);
}

/* Persian Calendar Style */
[b-zqzqnwtsoe] .k-calendar { 
    border-radius: 8px;
    border: 2px solid #e2e8f0;
}

[b-zqzqnwtsoe] .k-calendar-header {
    background: #f7fafc;
    border-radius: 8px 8px 0 0;
}

[b-zqzqnwtsoe] .k-calendar-td {
    border-radius: 4px;
}

[b-zqzqnwtsoe] .k-calendar-td.k-today {
    background-color: rgba(76, 175, 80, 0.1);
}

[b-zqzqnwtsoe] .k-calendar-td.k-selected {
    background-color: #4CAF50;
    color: white;
}

.form-check-input[b-zqzqnwtsoe] {
    width: 1.2em;
    height: 1.2em;
    margin-top: 0.1em;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.form-check-input:checked[b-zqzqnwtsoe] {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

.form-check-input:focus[b-zqzqnwtsoe] {
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-check-label[b-zqzqnwtsoe] {
    color: #2d3748;
    font-weight: 500;
    cursor: pointer;
    user-select: none;  
}

.opacity-50[b-zqzqnwtsoe] {
    opacity: 0.5;
    pointer-events: none;
}

/* Modal Size Customization */
[b-zqzqnwtsoe] .size-large {
    max-width: 800px !important;
    width: 90% !important;
}

[b-zqzqnwtsoe] .blazored-modal-container {
    display: flex;
    align-items: center;
    justify-content: center;
} 
/* _content/ExpenseManagement.UI/Pages/Events/ManageExpenseModal.razor.rz.scp.css */
.modal-content[b-6gkwwp6gjb] {
    border-radius: 1rem;
}

.form-label[b-6gkwwp6gjb] {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control[b-6gkwwp6gjb], .form-select[b-6gkwwp6gjb] {
    border-radius: 0.5rem;
}

.modal-footer[b-6gkwwp6gjb] {
    border-top: none;
    padding-top: 1rem;
}

.form-container[b-6gkwwp6gjb] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .form-container[b-6gkwwp6gjb] {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group[b-6gkwwp6gjb] {
    margin-bottom: 1rem;
}

.section-header[b-6gkwwp6gjb] {
    margin-bottom: 1rem;
}

.section-title[b-6gkwwp6gjb] {
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.share-options[b-6gkwwp6gjb] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .share-options[b-6gkwwp6gjb] {
        grid-template-columns: repeat(2, 1fr);
    }
}

.share-option[b-6gkwwp6gjb] {
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    padding: 0.75rem;
    transition: all 0.2s ease;
}

    .share-option:hover[b-6gkwwp6gjb] {
        border-color: #dee2e6;
        background-color: #f8f9fa;
    }

    .share-option.active[b-6gkwwp6gjb] {
        border-color: #0d6efd;
        background-color: #f8f9fa;
    }

.option-content[b-6gkwwp6gjb] {
    margin-right: 1.5rem;
}

.option-title[b-6gkwwp6gjb] {
    font-weight: 500;
    font-size: 0.9rem;
}

.participants-grid[b-6gkwwp6gjb] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .participants-grid[b-6gkwwp6gjb] {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

.participant-card[b-6gkwwp6gjb] {
    border: 2px solid #e9ecef;
    border-radius: 0.75rem;
    padding: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

    .participant-card:hover[b-6gkwwp6gjb] {
        border-color: #0d6efd;
        background-color: #f8f9fa;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    }

    .participant-card.selected[b-6gkwwp6gjb] {
        border-color: #0d6efd;
        background-color: #f0f7ff;
        box-shadow: 0 4px 12px rgba(13,110,253,0.1);
    }

.participant-name[b-6gkwwp6gjb] {
    font-weight: 500;
    font-size: 0.95rem;
    color: #2c3e50;
    margin-right: 0.5rem;
}

.shares-grid[b-6gkwwp6gjb] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .shares-grid[b-6gkwwp6gjb] {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

.share-card[b-6gkwwp6gjb] {
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .share-card:hover[b-6gkwwp6gjb] {
        border-color: #dee2e6;
        background-color: #f8f9fa;
    }

.participant-info[b-6gkwwp6gjb] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-amount[b-6gkwwp6gjb] {
    width: 100%;
}

.form-check[b-6gkwwp6gjb] {
    margin: 0;
}

.form-check-input[b-6gkwwp6gjb] {
    width: 1.1rem;
    height: 1.1rem;
    margin-top: 0.25rem;
    border: 2px solid #dee2e6;
    transition: all 0.2s ease;
}

    .form-check-input:checked[b-6gkwwp6gjb] {
        background-color: #0d6efd;
        border-color: #0d6efd;
    }

    .form-check-input:focus[b-6gkwwp6gjb] {
        box-shadow: 0 0 0 0.2rem rgba(13,110,253,0.25);
    }

.selected-participants-section[b-6gkwwp6gjb],
.custom-shares-section[b-6gkwwp6gjb] {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.share-validation[b-6gkwwp6gjb] {
    padding: 0.5rem;
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

/* Add responsive padding for modal content */
@media (max-width: 767px) {
    .modal-content[b-6gkwwp6gjb] {
        margin: 0.5rem;
    }
    
    .modal-body[b-6gkwwp6gjb] {
        padding: 1rem;
    }
    
    .modal-header[b-6gkwwp6gjb] {
        padding: 0.75rem 1rem;
    }
    
    .modal-footer[b-6gkwwp6gjb] {
        padding: 0.75rem 1rem;
    }
}
/* _content/ExpenseManagement.UI/Pages/Events/ManageParticipantsModal.razor.rz.scp.css */
.modern-modal[b-94jwhaqnp8] {
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.modal-header[b-94jwhaqnp8] {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    border-radius: 12px 12px 0 0;
    padding: 1rem 1.5rem;
}

.modal-body[b-94jwhaqnp8] {
    padding: 1.5rem;
}

.participants-list[b-94jwhaqnp8] {
    max-height: 350px;
    overflow-y: auto;
    padding-right: 5px;
    padding-left: 2px;
}

    .participants-list[b-94jwhaqnp8]::-webkit-scrollbar {
        width: 6px;
    }

    .participants-list[b-94jwhaqnp8]::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 3px;
    }

    .participants-list[b-94jwhaqnp8]::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 3px;
    }

.list-group-item[b-94jwhaqnp8] {
    transition: all 0.2s ease;
    border-radius: 8px !important;
    margin-bottom: 8px;
    border: 1px solid #e9ecef;
    position: relative;
    padding: 0.75rem 1rem;
}

    .list-group-item:hover[b-94jwhaqnp8] {
        background-color: #f8f9fa;
        transform: translateX(-2px);
        z-index: 1;
    }

.participant-avatar[b-94jwhaqnp8] {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e9ecef;
    border-radius: 50%;
    color: #6c757d;
    margin-left: 10px;
}

.participant-name[b-94jwhaqnp8] {
    font-weight: 500;
}

.empty-state[b-94jwhaqnp8] {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.input-group[b-94jwhaqnp8] {
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    overflow: hidden;
}

.input-group-text[b-94jwhaqnp8] {
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
}

.btn[b-94jwhaqnp8] {
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.btn-sm[b-94jwhaqnp8] {
    padding: 0.375rem 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border-radius: 6px;
    font-weight: 500;
}

    .btn-sm .icon[b-94jwhaqnp8] {
        transition: transform 0.2s ease;
    }

.btn-remove[b-94jwhaqnp8] {
    background-color: transparent;
    color: #dc3545;
    border: 1px solid #dc3545;
    transition: all 0.2s ease;
}

    .btn-remove:hover[b-94jwhaqnp8] {
        background-color: #dc3545;
        color: white;
    }

.btn-restore[b-94jwhaqnp8] {
    background-color: transparent;
    color: #198754;
    border: 1px solid #198754;
    transition: all 0.2s ease;
}

    .btn-restore:hover[b-94jwhaqnp8] {
        background-color: #198754;
        color: white;
    }

.action-text[b-94jwhaqnp8] {
    margin-right: 4px;
    font-size: 0.875rem;
}

.btn-remove:hover .icon[b-94jwhaqnp8] {
    transform: scale(1.1);
}

.btn-restore:hover .icon[b-94jwhaqnp8] {
    transform: rotate(-45deg);
}

.list-group-item:hover .btn-remove[b-94jwhaqnp8],
.list-group-item:hover .btn-restore[b-94jwhaqnp8] {
    opacity: 1;
}

.btn-remove[b-94jwhaqnp8],
.btn-restore[b-94jwhaqnp8] {
    opacity: 0.7;
}

.icon[b-94jwhaqnp8] {
    display: inline-block;
    vertical-align: middle;
}
/* _content/ExpenseManagement.UI/Pages/Index.razor.rz.scp.css */
.landing-container[b-kpvn6c6m61] {
    direction: rtl;
    font-family: 'Vazirmatn', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f1f5f9;
}

.header[b-kpvn6c6m61] {
    background-color: rgba(241, 245, 249, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-menu[b-kpvn6c6m61] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo[b-kpvn6c6m61] {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.nav-links[b-kpvn6c6m61] {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link[b-kpvn6c6m61] {
    text-decoration: none;
    color: #334155;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link[b-kpvn6c6m61]::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #1e40af;
    transition: width 0.3s ease;
}

.nav-link:hover[b-kpvn6c6m61]::after {
    width: 100%;
}

.login-btn[b-kpvn6c6m61], .register-btn[b-kpvn6c6m61], .profile-btn[b-kpvn6c6m61] {
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.login-btn[b-kpvn6c6m61] {
    background-color: transparent;
    border: 2px solid #1e40af;
    color: #1e40af;
}

.register-btn[b-kpvn6c6m61] {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    border: none;
    color: white;
    box-shadow: 0 4px 6px rgba(30, 64, 175, 0.1);
}

.profile-btn[b-kpvn6c6m61] {
    background: linear-gradient(135deg, #047857, #065f46);
    border: none;
    color: white;
    box-shadow: 0 4px 6px rgba(4, 120, 87, 0.1);
}

.login-btn:hover[b-kpvn6c6m61], .register-btn:hover[b-kpvn6c6m61], .profile-btn:hover[b-kpvn6c6m61] {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.welcome-text[b-kpvn6c6m61] {
    color: #334155;
    font-weight: 500;
}

main[b-kpvn6c6m61] {
    margin-top: 4.5rem;
    flex: 1;
}

.hero[b-kpvn6c6m61] {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    color: white;
    text-align: center;
    padding: 6rem 1rem;
    position: relative;
    overflow: hidden;
}

.hero[b-kpvn6c6m61]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.hero h1[b-kpvn6c6m61], .hero-text[b-kpvn6c6m61], .cta-button[b-kpvn6c6m61], .mobile-profile-btn[b-kpvn6c6m61] {
    position: relative;
    z-index: 1;
}

.hero h1[b-kpvn6c6m61] {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-text[b-kpvn6c6m61] {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-button[b-kpvn6c6m61] {
    background-color: white;
    color: #1e40af;
    padding: 1rem 2.5rem;
    border-radius: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button:hover[b-kpvn6c6m61] {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.mobile-profile-btn[b-kpvn6c6m61] {
    display: none;
    background: linear-gradient(135deg, #047857, #065f46);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.mobile-profile-btn:hover[b-kpvn6c6m61] {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.features[b-kpvn6c6m61] {
    padding: 6rem 1rem;
    background-color: #ffffff;
}

.features h2[b-kpvn6c6m61] {
    text-align: center;
    margin-bottom: 4rem;
    color: #1e293b;
    font-size: 2.25rem;
    font-weight: 700;
}

.feature-grid[b-kpvn6c6m61] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.feature-card[b-kpvn6c6m61] {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature-card:hover[b-kpvn6c6m61] {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.feature-icon[b-kpvn6c6m61] {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e40af;
}

.feature-card h3[b-kpvn6c6m61] {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.feature-card p[b-kpvn6c6m61] {
    color: #475569;
    line-height: 1.6;
}

.about[b-kpvn6c6m61], .contact[b-kpvn6c6m61] {
    padding: 6rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f1f5f9;
}

.about h2[b-kpvn6c6m61], .contact h2[b-kpvn6c6m61] {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #1e293b;
    font-size: 2.25rem;
    font-weight: 700;
}

.about p[b-kpvn6c6m61] {
    text-align: center;
    color: #334155;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
}

.contact-info[b-kpvn6c6m61] {
    text-align: center;
    color: #334155;
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    max-width: 600px;
    margin: 0 auto;
}

.contact-info p[b-kpvn6c6m61] {
    margin: 1rem 0;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #475569;
}

.contact-info svg[b-kpvn6c6m61] {
    color: #1e40af;
}

.footer[b-kpvn6c6m61] {
    background-color: #1e293b;
    color: #e2e8f0;
    text-align: center;
    padding: 2rem;
    margin-top: auto;
}

.mobile-menu-button[b-kpvn6c6m61] {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: #1e40af;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    z-index: 1001;
}

@media (max-width: 768px) {
    .mobile-menu-button[b-kpvn6c6m61] {
        display: block;
    }

    .mobile-profile-btn[b-kpvn6c6m61] {
        display: block;
    }

    .nav-menu[b-kpvn6c6m61] {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        align-items: flex-start;
    }

    .logo[b-kpvn6c6m61] {
        margin-right: 3rem;
    }

    .nav-links[b-kpvn6c6m61] {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: rgba(241, 245, 249, 0.98);
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        border-radius: 0 0 1rem 1rem;
    }

    .nav-links.show[b-kpvn6c6m61] {
        display: flex;
    }

    .hero h1[b-kpvn6c6m61] {
        font-size: 2rem;
    }

    .hero-text[b-kpvn6c6m61] {
        font-size: 1.125rem;
    }

    .feature-grid[b-kpvn6c6m61] {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .about[b-kpvn6c6m61], .contact[b-kpvn6c6m61] {
        padding: 4rem 1rem;
    }

    .contact-info[b-kpvn6c6m61] {
        padding: 2rem 1rem;
    }
} 
/* _content/ExpenseManagement.UI/Pages/Loan/LoanDetails/LoanDetail.razor.rz.scp.css */
.backgroundflex[b-icaaka25zx] {
    background-color: #FEFEFD;
    border: 1px solid #88A3FF;
    border-radius: 5px;
    -moz-box-shadow: 0 3px 6px #000;
    -webkit-box-shadow: 0 3px 6px #000;
    box-shadow: 0 3px 6px #000;
    margin-right: 5vw;
    line-height: 22px;
    font-size: 10pt;
    min-height: 500px;
    text-align: center;
    margin-top: 10px;
    font-family: IRAN_Sans_Regular;
}


@media (max-width:767px) {
    .backgroundflex[b-icaaka25zx] {
        margin-right: 0;
    }
}

.TitleStyle[b-icaaka25zx] {
    color: darkred;
    font-size: 9pt;
    font-weight: bold;
    text-align: right;
    text-shadow: none;
    margin-top: 12px;
    width: 100%;
}

.fontTitle[b-icaaka25zx] {
    font-family: IRAN_Sans_Regular;
}

@font-face {
    font-family: IRAN_Sans_Regular;
    src: url('/Fonts/IRAN_Sans_Regular.ttf');
}

.tblSubmitEdit[b-icaaka25zx] {
    width: 100%;
    text-align: right;
    margin-top: 10px;
}

.reportStyle[b-icaaka25zx] {
    width: 100%;
    font-family: IRAN_Sans_Regular;
    color: Black;
    padding: 10px;
    font-weight: bold;
    border: solid 1px gray;
    border-collapse: collapse;
}

    .reportStyle th[b-icaaka25zx] {
        padding: 2px 2px;
        color: #000;
        background-color:aquamarine;
        border: solid 1px gray;
        text-align: center;
        font-family: IRAN_Sans_Regular;
        font-size: 10pt;
        direction: rtl;
    }

    .reportStyle td[b-icaaka25zx] {
        border: solid 1px gray;
        padding: 2px 6px 2px 2px;
        line-height: 24px;
        font-family: IRAN_Sans_Regular;
        direction: ltr;
        font-size: 10pt;
        color: #000;
    }

.reportHeaderStyle[b-icaaka25zx] {
    font-family: IRAN_Sans_Regular;
    color: Black;
    text-align: center;
    vertical-align: middle;
    height: 36px;
    font-size: 10pt;
    background-color: khaki;
    font-weight: normal;
    border-bottom: 2px solid #710a0a;
}

.reportRowStyle[b-icaaka25zx] {
    font-family: IRAN_Sans_Regular;
    color: Black;
    text-align: center;
    vertical-align: middle;
    height: 22px;
    font-size: 9pt;
    background-color: #FFFFEE;
}

.reportSelectButton[b-icaaka25zx] {
    font-family: IRAN_Sans_Regular;
    color: #FFF;
    text-align: center;
    vertical-align: middle;
    height: 32px;
    font-size: 9pt;
    padding: 3px;
    border: 1px solid #5787d7;
    background: #003366;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin: 2px;
    width: 90px;
}

@media print {
    header[b-icaaka25zx], footer[b-icaaka25zx], aside[b-icaaka25zx], form[b-icaaka25zx], nav[b-icaaka25zx] {
        display: none;
    }

    body[b-icaaka25zx] {
        background: none;
    }

    ul[b-icaaka25zx], li[b-icaaka25zx] {
        display: none;
    }

    .navPlaceholder[b-icaaka25zx] {
        display: none;
    }

    .MiddleHeight[b-icaaka25zx] {
        display: none;
    }

    .SidebarTitle[b-icaaka25zx] {
        display: none;
    }

    .sidebar[b-icaaka25zx] {
        display: none;
    }

    .littleHeader[b-icaaka25zx] {
        display: none;
    }

    .d-flex[b-icaaka25zx] {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        padding-top: 90px !important;
    }

    .reportSelectButton[b-icaaka25zx] {
        display: none;
    }

    @page {
        margin: 2cm;
    }
}
/* _content/ExpenseManagement.UI/Pages/Loan/LoanmMasters/LoanMaster.razor.rz.scp.css */
label[b-caft0i3u1l] {
    font-size: 12px;
}

.F-Small[b-caft0i3u1l] {
    font-size: 12px;
}

.required[b-caft0i3u1l]:after {
    content: " *";
    color: red;
}

select[b-caft0i3u1l] {
    font-size: 12px;
}

tr td[b-caft0i3u1l] {
    vertical-align: middle;
    font-size: large;
    font-weight: 100;
    padding: 0 5px 0 5px !important;
}

tr th[b-caft0i3u1l] {
    min-width: 5vw;
}

    tr th span[b-caft0i3u1l] {
        vertical-align: middle;
        font-size: larger;
    }

div.form-group[b-caft0i3u1l] {
    height: 25px;
}

div.form-check[b-caft0i3u1l] {
    height: 25px;
}

input[b-caft0i3u1l] {
    height: 25px;
}



.backgroundflex[b-caft0i3u1l] {
    background-color: #FEFEFD;
    border: 1px solid #88A3FF;
    border-radius: 5px;
    -moz-box-shadow: 0 3px 6px #000;
    -webkit-box-shadow: 0 3px 6px #000;
    box-shadow: 0 3px 6px #000;
    margin-right: 5vw;
    line-height: 22px;
    font-size: 10pt;
    min-height: 500px;
    text-align: center;
    margin-top: 10px;
    font-family: IRAN_Sans_Regular;
}


@media (max-width:767px) {
    .backgroundflex[b-caft0i3u1l] {
        margin-right: 0;
    }
}

.TitleStyle[b-caft0i3u1l] {
    color: darkred;
    font-size: 9pt;
    font-weight: bold;
    text-align: center;
    text-shadow: none;
    margin-top: 12px;
    width: 100%;
}

.fontTitle[b-caft0i3u1l] {
    font-family: IRAN_Sans_Regular;
}

@font-face {
    font-family: IRAN_Sans_Regular;
    src: url('/Fonts/IRAN_Sans_Regular.ttf');
}

.reportStyle[b-caft0i3u1l] {
    width: 100%;
    font-family: IRAN_Sans_Regular;
    color: Black;
    padding: 10px;
    font-weight: bold;
    border: solid 1px gray;
    border-collapse: collapse;
}

    .reportStyle th[b-caft0i3u1l] {
        padding: 2px 2px;
        color: #000;
        background-color :aquamarine;
        border: solid 1px gray;
        text-align: center;
        font-family: IRAN_Sans_Regular;
        font-size: 10pt;
        direction: rtl;
    }

    .reportStyle td[b-caft0i3u1l] {
        border: solid 1px gray;
        padding: 2px 6px 2px 2px;
        line-height: 24px;
        font-family: IRAN_Sans_Regular;
        direction: ltr;
        font-size: 10pt;
        color: #000;
    }

.reportHeaderStyle[b-caft0i3u1l] {
    font-family: IRAN_Sans_Regular;
    color: Black;
    text-align: center;
    vertical-align: middle;
    height: 36px;
    font-size: 10pt;
    background-color: khaki;
    font-weight: normal;
    border-bottom: 2px solid #710a0a;
}

.reportRowStyle[b-caft0i3u1l] {
    font-family: IRAN_Sans_Regular;
    color: Black;
    text-align: center;
    vertical-align: middle;
    height: 22px;
    font-size: 9pt;
    background-color: #FFFFEE;
}

.reportSelectButton[b-caft0i3u1l] {
    font-family: IRAN_Sans_Regular;
    color: #FFF;
    text-align: center;
    vertical-align: middle;
    height: 29px;
    font-size: 9pt;
    border: 1px solid #5787d7;
    background: #003366;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin: 2px;
    width: 90px;
}
/* _content/ExpenseManagement.UI/Pages/LoginRelated/Login.razor.rz.scp.css */
.LoginForm[b-6z1rdn84st] {
    width: 450px;
    height: auto;
    margin: 20px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.LoginFormContainer[b-6z1rdn84st] {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #2c3e50, #3498db, #2ecc71);
    background-size: 400% 400%;
    animation: gradientBG-b-6z1rdn84st 15s ease infinite;
}

@keyframes gradientBG-b-6z1rdn84st {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.Title[b-6z1rdn84st] {
    text-align: center;
    color: #2c3e50;
    font-size: 28px;
    width: 90%;
    margin: 0 auto 30px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 15px;
    font-weight: 600;
}

.LoginSubmitButton[b-6z1rdn84st] {
    background: linear-gradient(45deg, #3498db, #2ecc71);
    color: white;
    font-size: 16px;
    margin-top: 25px;
    width: 120px;
    border-radius: 25px;
    padding: 12px 25px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.LoginSubmitButton:hover[b-6z1rdn84st] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
    background: linear-gradient(45deg, #2980b9, #27ae60);
}

.LoginSubmitButtonContainer[b-6z1rdn84st] {
    justify-items: center;
    text-align: center;
    margin-top: 20px;
}

.GoToRegister[b-6z1rdn84st] {
    font-size: 16px;
    text-align: center;
    margin-top: 25px;
    color: #34495e;
}

.GoToMainPage[b-6z1rdn84st] {
    font-size: 16px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    padding-top: 15px;
    margin-top: 20px;
    color: #34495e;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.GoToMainPage:hover[b-6z1rdn84st] {
    color: #3498db;
    font-weight: 500;
    cursor: pointer;
}

.GoToRegisterLink[b-6z1rdn84st] {
    text-decoration: none;
    color: #3498db;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.GoToRegisterLink:hover[b-6z1rdn84st] {
    color: #2980b9;
}

.LoginInputIcon[b-6z1rdn84st] {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #7f8c8d;
}

.LoginInput[b-6z1rdn84st] {
    position: relative;
    margin-bottom: 20px;
}

.LoginInput input[b-6z1rdn84st] {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.LoginInput input:focus[b-6z1rdn84st] {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    outline: none;
}

.text-muted[b-6z1rdn84st] {
    color: #7f8c8d;
    font-size: 16px;
    margin-top: 10px;
}

@media only screen and (max-width: 768px) {
    .LoginForm[b-6z1rdn84st] {
        width: 90%;
        padding: 30px 20px;
    }
}

@media only screen and (max-width: 480px) {
    .LoginForm[b-6z1rdn84st] {
        width: 95%;
        padding: 20px 15px;
    }
    
    .Title[b-6z1rdn84st] {
        font-size: 24px;
    }
}
/* _content/ExpenseManagement.UI/Pages/LoginRelated/Register.razor.rz.scp.css */
.RegisterForm[b-hk6cj8yh4b] {
    width: 450px;
    height: auto;
    margin: 20px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.RegisterFormContainer[b-hk6cj8yh4b] {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #2c3e50, #3498db, #2ecc71);
    background-size: 400% 400%;
    animation: gradientBG-b-hk6cj8yh4b 15s ease infinite;
}

@keyframes gradientBG-b-hk6cj8yh4b {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.Title[b-hk6cj8yh4b] {
    text-align: center;
    color: #2c3e50;
    font-size: 28px;
    width: 90%;
    margin: 0 auto 30px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 15px;
    font-weight: 600;
}

.RegisterSubmitButton[b-hk6cj8yh4b] {
    background: linear-gradient(45deg, #3498db, #2ecc71);
    color: white;
    font-size: 16px;
    margin-top: 25px;
    width: 120px;
    border-radius: 25px;
    padding: 12px 25px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .RegisterSubmitButton:hover[b-hk6cj8yh4b] {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
        background: linear-gradient(45deg, #2980b9, #27ae60);
    }

.RegisterSubmitButtonContainer[b-hk6cj8yh4b] {
    justify-items: center;
    text-align: center;
    margin-top: 20px;
}

.GoToRegister[b-hk6cj8yh4b] {
    font-size: 16px;
    text-align: center;
    margin-top: 25px;
    color: #34495e;
}

.GoToMainPage[b-hk6cj8yh4b] {
    font-size: 16px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    padding-top: 15px;
    margin-top: 20px;
    color: #34495e;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .GoToMainPage:hover[b-hk6cj8yh4b] {
        color: #3498db;
        font-weight: 500;
        cursor: pointer;
    }

.GoToRegisterLink[b-hk6cj8yh4b] {
    text-decoration: none;
    color: #3498db;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .GoToRegisterLink:hover[b-hk6cj8yh4b] {
        color: #2980b9;
    }

.RegisterInputIcon[b-hk6cj8yh4b] {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #7f8c8d;
}

.RegisterInput[b-hk6cj8yh4b] {
    position: relative;
    margin-bottom: 20px;
}

    .RegisterInput input[b-hk6cj8yh4b] {
        width: 100%;
        padding: 12px 15px 12px 45px;
        border: 1px solid #e0e0e0;
        border-radius: 25px;
        font-size: 16px;
        transition: all 0.3s ease;
        background: #f8f9fa;
    }

        .RegisterInput input:focus[b-hk6cj8yh4b] {
            border-color: #3498db;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
            outline: none;
        }

.PasswordHint[b-hk6cj8yh4b] {
    color: #7f8c8d;
    font-size: 14px;
    text-align: center;
    margin: 15px 0;
    padding: 0 20px;
    line-height: 1.5;
}

@media only screen and (max-width: 768px) {
    .RegisterForm[b-hk6cj8yh4b] {
        width: 90%;
        padding: 30px 20px;
    }
}

@media only screen and (max-width: 480px) {
    .RegisterForm[b-hk6cj8yh4b] {
        width: 95%;
        padding: 20px 15px;
    }

    .Title[b-hk6cj8yh4b] {
        font-size: 24px;
    }
}
/* _content/ExpenseManagement.UI/Pages/Operations/Add.razor.rz.scp.css */
.close-button[b-3v0jf7l8zn] {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

    .close-button:hover[b-3v0jf7l8zn] {
        background: rgba(0,0,0,0.05);
        color: #333;
    }

    .close-button .icon[b-3v0jf7l8zn] {
        width: 20px;
        height: 20px;
    }

@media (max-width: 767px) {
    .close-button[b-3v0jf7l8zn] {
        width: 32px;
        height: 32px;
        padding: 0.4rem;
    }

        .close-button .icon[b-3v0jf7l8zn] {
            width: 18px;
            height: 18px;
        }
}

.add-operation-container[b-3v0jf7l8zn] {
    background-color: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 24px;
    margin: 24px auto;
    max-width: 800px;
    direction: rtl;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-group[b-3v0jf7l8zn] {
    margin-bottom: 20px;
}

    .form-group label[b-3v0jf7l8zn] {
        display: block;
        margin-bottom: 8px;
        color: #2c3e50;
        font-weight: 500;
    }

.form-control[b-3v0jf7l8zn] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: all 0.2s ease;
    background-color: white;
}

    .form-control:focus[b-3v0jf7l8zn] {
        outline: none;
        border-color: #4a90e2;
        box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.1);
    }

.btn-submit[b-3v0jf7l8zn] {
    background-color: #4a90e2;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    margin-top: 16px;
}

    .btn-submit:hover[b-3v0jf7l8zn] {
        background-color: #357abd;
        transform: translateY(-1px);
    }

    .btn-submit:disabled[b-3v0jf7l8zn] {
        background-color: #ccc;
        cursor: not-allowed;
        transform: none;
    }

.validation-message[b-3v0jf7l8zn] {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 4px;
}

.tag-container[b-3v0jf7l8zn] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.tag[b-3v0jf7l8zn] {
    background-color: rgba(74, 144, 226, 0.1);
    color: #4a90e2;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .tag:hover[b-3v0jf7l8zn] {
        background-color: rgba(74, 144, 226, 0.2);
    }

    .tag.selected[b-3v0jf7l8zn] {
        background-color: #4a90e2;
        color: white;
    }

@media screen and (max-width: 768px) {
    .add-operation-container[b-3v0jf7l8zn] {
        padding: 16px;
        margin: 16px;
    }

    .form-control[b-3v0jf7l8zn] {
        font-size: 16px; /* Prevents zoom on mobile */
    }
}
/* _content/ExpenseManagement.UI/Pages/Operations/DeleteConfirmation.razor.rz.scp.css */
.confirmation-content[b-rqh0101e4z] {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.confirmation-header[b-rqh0101e4z] {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

    .confirmation-header h3[b-rqh0101e4z] {
        margin: 0;
        font-size: 1.25rem;
        font-weight: 600;
        color: #2c3e50;
    }

.confirmation-body[b-rqh0101e4z] {
    padding: 2rem 1.5rem;
    text-align: center;
}

.message-icon[b-rqh0101e4z] {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.confirmation-body p[b-rqh0101e4z] {
    margin: 0;
    font-size: 1.1rem;
    color: #34495e;
    line-height: 1.6;
}

.confirmation-footer[b-rqh0101e4z] {
    padding: 1rem 1.5rem;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.btn[b-rqh0101e4z] {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.btn-light[b-rqh0101e4z] {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #495057;
}

    .btn-light:hover[b-rqh0101e4z] {
        background-color: #e9ecef;
        border-color: #ced4da;
    }

.btn-primary[b-rqh0101e4z] {
    background-color: #3498db;
    border: none;
    color: white;
}

    .btn-primary:hover[b-rqh0101e4z] {
        background-color: #2980b9;
        transform: translateY(-1px);
    }

.btn:focus[b-rqh0101e4z] {
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.25);
    outline: none;
}
/* _content/ExpenseManagement.UI/Pages/Operations/ImportExcel.razor.rz.scp.css */
.import-excel-container[b-n6nnty0rvf] {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    direction: rtl;
}

.import-excel-container h2[b-n6nnty0rvf] {
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    text-align: center;
    font-size: 1.75rem;
    font-weight: 600; 
}

.account-selection[b-n6nnty0rvf] {
    margin-bottom: 2rem;
}

.account-selection select[b-n6nnty0rvf] {
    width: 100%;
    padding: 0.875rem 1rem;
    margin-top: 0.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #f8f9fa;
    transition: all 0.2s ease; 
}

.account-selection select:focus[b-n6nnty0rvf] {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.file-upload[b-n6nnty0rvf] {
    margin-bottom: 2rem;
    padding: 2rem;
    border: 2px dashed #e0e0e0;
    border-radius: 12px;
    text-align: center;
    transition: all 0.2s ease;
    background-color: #f8f9fa;
}

.file-upload:hover[b-n6nnty0rvf] {
    border-color: #2563eb;
    background-color: #f0f7ff;
}

.file-upload.loading[b-n6nnty0rvf] {
    border-color: #2563eb;
    background-color: #f0f7ff;
    opacity: 0.8;
}

.selected-files[b-n6nnty0rvf] {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.selected-file[b-n6nnty0rvf] {
    margin-top: 0.5rem;
    padding: 0.75rem 1rem;
    background-color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
}

.remove-file[b-n6nnty0rvf] {
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.remove-file:hover[b-n6nnty0rvf] {
    background-color: #f0f0f0;
    color: #dc2626;
}

.file-list[b-n6nnty0rvf] {
    margin-top: 1rem;
    padding: 0;
    list-style: none;
}

.file-list li[b-n6nnty0rvf] {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
    color: #4a5568;
}

.file-list li:last-child[b-n6nnty0rvf] {
    border-bottom: none;
}

.file-icon[b-n6nnty0rvf] {
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232563eb'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6zm4 18H6V4h7v5h5v11z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.actions[b-n6nnty0rvf] {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.button-content[b-n6nnty0rvf] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.primary-button[b-n6nnty0rvf], .secondary-button[b-n6nnty0rvf] {
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 140px; 
}

.primary-button[b-n6nnty0rvf] {
    background-color: #2563eb;
    color: white;
}

.primary-button:hover:not(:disabled)[b-n6nnty0rvf] {
    background-color: #1d4ed8;
    transform: translateY(-1px);
}

.secondary-button[b-n6nnty0rvf] {
    background-color: #f8f9fa;
    color: #1a1a1a;
    border: 1px solid #e0e0e0;
}

.secondary-button:hover:not(:disabled)[b-n6nnty0rvf] {
    background-color: #e9ecef;
    transform: translateY(-1px);
}

.primary-button:disabled[b-n6nnty0rvf], .secondary-button:disabled[b-n6nnty0rvf] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.loading-spinner[b-n6nnty0rvf] {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin-b-n6nnty0rvf 0.8s linear infinite;
}

@keyframes spin-b-n6nnty0rvf {
    to {
        transform: rotate(360deg);
    }
}

.error-message[b-n6nnty0rvf] {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background-color: #fff5f5;
    color: #dc2626;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #fed7d7; 
}

.error-icon[b-n6nnty0rvf] {
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23dc2626'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.import-icon[b-n6nnty0rvf] {
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.back-icon[b-n6nnty0rvf] {
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231a1a1a'%3E%3Cpath d='M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Modal Styles */
.modal-overlay[b-n6nnty0rvf] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.modal-content[b-n6nnty0rvf] {
    background-color: white;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    direction: rtl;
}

.modal-header[b-n6nnty0rvf] {
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3[b-n6nnty0rvf] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a; 
}

.close-button[b-n6nnty0rvf] {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.close-button:hover[b-n6nnty0rvf] {
    background-color: #f0f0f0;
    color: #1a1a1a;
}

.modal-body[b-n6nnty0rvf] {
    padding: 1.5rem; 
}

.modal-body p[b-n6nnty0rvf] {
    margin: 0;
    line-height: 1.6;
    color: #4a5568;
}

.modal-footer[b-n6nnty0rvf] {
    padding: 1.5rem;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.file-upload-header[b-n6nnty0rvf] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.file-limit[b-n6nnty0rvf] {
    font-size: 0.875rem;
    color: #666;
    background-color: #f8f9fa;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
} 
/* _content/ExpenseManagement.UI/Pages/Operations/Operation.razor.rz.scp.css */
.tag[b-14t7qy9su4] {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 4px 8px;
    margin: 2px 4px;
    font-size: 0.85rem;
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.03);
}

.transaction-container[b-14t7qy9su4] { 
    background-color: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 24px;
    margin: 24px auto;
    max-width: 1200px;
    direction: rtl;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); 
}

.transaction-header[b-14t7qy9su4] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
    gap: 16px;
}

.transaction-header select[b-14t7qy9su4] {
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: white; 
    min-width: 200px;
    transition: all 0.2s ease;
}

.transaction-header select:focus[b-14t7qy9su4] {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.1);
}

.transaction-buttons[b-14t7qy9su4] {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.transaction-buttons button[b-14t7qy9su4] {
    background-color: #4a90e2;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease; 
    display: flex;
    align-items: center;
    gap: 8px;
}

.transaction-buttons button:hover[b-14t7qy9su4] {
    background-color: #357abd;
    transform: translateY(-1px);
}

.table-responsive[b-14t7qy9su4] {
    overflow-x: auto;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

table[b-14t7qy9su4] {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 16px;
}

table th[b-14t7qy9su4], table td[b-14t7qy9su4] {
    padding: 16px;
    border: none;
    text-align: right; 
}

table th[b-14t7qy9su4] {
    background-color: #f8f9fa;
    color: #2c3e50;
    font-weight: 600;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

table tr[b-14t7qy9su4] {
    transition: all 0.2s ease;
}

table tr:nth-child(even)[b-14t7qy9su4] {
    background-color: #fafafa;
}

table tr:hover[b-14t7qy9su4] {
    background-color: #f5f7fa;
}

.pagination[b-14t7qy9su4] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 32px;
    gap: 4px;
    flex-wrap: wrap;
}

.pagination-button[b-14t7qy9su4] {
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    background-color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.pagination-button svg[b-14t7qy9su4] {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.pagination-button:hover:not(:disabled)[b-14t7qy9su4] {
    background-color: #f8f9fa;
    border-color: #4a90e2;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.pagination-button:hover:not(:disabled) svg[b-14t7qy9su4] {
    transform: scale(1.1);
}

.pagination-button.active[b-14t7qy9su4] {
    background-color: #4a90e2;
    color: white;
    border-color: #4a90e2;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
}

.pagination-button.active svg[b-14t7qy9su4] {
    stroke: white;
}

.pagination-button:disabled[b-14t7qy9su4] {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #f5f5f5;
    border-color: #e0e0e0;
    box-shadow: none;
}

.pagination-button:disabled svg[b-14t7qy9su4] {
    stroke: #999;
}

.pagination-ellipsis[b-14t7qy9su4] {
    padding: 8px 4px;
    color: #666;
    font-weight: 500;
}

/* Tablet and smaller desktop breakpoint */
@media screen and (max-width: 1024px) {
    .transaction-container[b-14t7qy9su4] {
        padding: 20px;
        margin: 20px;
    }

    .transaction-header[b-14t7qy9su4] {
        gap: 12px;
    }

    .transaction-header select[b-14t7qy9su4] {
        min-width: 180px;
    }

    .transaction-buttons[b-14t7qy9su4] {
        gap: 8px;
    }

    .transaction-buttons button[b-14t7qy9su4] {
        padding: 10px 16px;
        font-size: 13px;
    }

    table th[b-14t7qy9su4], table td[b-14t7qy9su4] {
        padding: 12px;
    }
}

/* Tablet and Mobile breakpoint */
@media screen and (max-width: 768px) {
    .transaction-container[b-14t7qy9su4] {
        padding: 16px;
        margin: 16px;
    }

    .transaction-header[b-14t7qy9su4] {
        flex-direction: column;
        align-items: stretch;
    }

    .transaction-header select[b-14t7qy9su4] {
        width: 100%;
        min-width: unset;
    }

    .transaction-buttons[b-14t7qy9su4] {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 8px;
    }

    .transaction-buttons button[b-14t7qy9su4] {
        flex: 1 1 calc(50% - 8px);
        min-width: 140px;
        justify-content: center;
    }

    .table-responsive[b-14t7qy9su4] {
        margin: 0 -16px;
        padding: 0 16px;
        width: calc(100% + 32px);
    }

    table[b-14t7qy9su4] {
        min-width: 800px; /* Ensures table doesn't get too squeezed */
    }

    .pagination[b-14t7qy9su4] {
        margin-top: 24px;
        gap: 4px;
    }
    
    .pagination-button[b-14t7qy9su4] {
        padding: 6px 12px;
        min-width: 36px;
        font-size: 13px;
    }

    .pagination-ellipsis[b-14t7qy9su4] {
        padding: 6px 2px;
    }
}

/* Small Mobile breakpoint */
@media screen and (max-width: 480px) {
    .transaction-container[b-14t7qy9su4] {
        padding: 12px;
        margin: 12px;
    }

    .transaction-buttons[b-14t7qy9su4] {
        flex-direction: column;
    }

    .transaction-buttons button[b-14t7qy9su4] {
        width: 100%;
        flex: none;
    }

    .table-responsive[b-14t7qy9su4] {
        margin: 0 -12px;
        padding: 0 12px;
        width: calc(100% + 24px);
    }

    .pagination[b-14t7qy9su4] {
        gap: 2px;
    }

    .pagination-button[b-14t7qy9su4] {
        padding: 4px 8px;
        min-width: 32px;
        font-size: 12px;
    }
}

/* Small mobile breakpoint */
@media screen and (max-width: 360px) {
    .transaction-container[b-14t7qy9su4] {
        padding: 8px;
        margin: 8px;
    }

    td[b-14t7qy9su4] {
        padding: 8px 8px 8px 40%;
    }

    .tag[b-14t7qy9su4] {
        font-size: 11px;
        padding: 2px 4px;
    }
}

/* Empty State Styles */
.empty-state[b-14t7qy9su4] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    text-align: center;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin: 24px 0;
}

.empty-state-icon[b-14t7qy9su4] {
    color: #4a90e2;
    margin-bottom: 24px;
    opacity: 0.8;
}

.empty-state h2[b-14t7qy9su4] {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.empty-state p[b-14t7qy9su4] {
    color: #666;
    font-size: 16px;
    margin-bottom: 32px;
    max-width: 400px;
    line-height: 1.5;
}

.empty-state-actions[b-14t7qy9su4] {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.empty-state-actions button[b-14t7qy9su4] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.empty-state-actions .primary-action[b-14t7qy9su4] {
    background-color: #4a90e2;
    color: white;
    border: none;
}

.empty-state-actions .primary-action:hover[b-14t7qy9su4] {
    background-color: #357abd;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.2);
}

.empty-state-actions .secondary-action[b-14t7qy9su4] {
    background-color: white;
    color: #4a90e2;
    border: 1px solid #4a90e2;
}

.empty-state-actions .secondary-action:hover[b-14t7qy9su4] {
    background-color: #f8f9fa;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.1);
}

/* Mobile Responsive Styles for Empty State */
@media screen and (max-width: 768px) {
    .empty-state[b-14t7qy9su4] {
        padding: 32px 16px;
        margin: 16px 0;
    }

    .empty-state-icon[b-14t7qy9su4] {
        margin-bottom: 16px;
    }

    .empty-state-icon svg[b-14t7qy9su4] {
        width: 80px;
        height: 80px;
    }

    .empty-state h2[b-14t7qy9su4] {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .empty-state p[b-14t7qy9su4] {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .empty-state-actions[b-14t7qy9su4] {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .empty-state-actions button[b-14t7qy9su4] {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
    }
}

@media screen and (max-width: 480px) {
    .empty-state[b-14t7qy9su4] {
        padding: 24px 12px;
        margin: 12px 0;
    }

    .empty-state-icon svg[b-14t7qy9su4] {
        width: 64px;
        height: 64px;
    }

    .empty-state h2[b-14t7qy9su4] {
        font-size: 18px;
    }

    .empty-state p[b-14t7qy9su4] {
        font-size: 13px;
        margin-bottom: 20px;
    }
}
/* _content/ExpenseManagement.UI/Pages/Operations/Transfer.razor.rz.scp.css */
.close-button[b-vm51w16phj] {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

    .close-button:hover[b-vm51w16phj] {
        background: rgba(0,0,0,0.05);
        color: #333;
    }

    .close-button .icon[b-vm51w16phj] {
        width: 20px;
        height: 20px;
    }

@media (max-width: 767px) {
    .close-button[b-vm51w16phj] {
        width: 32px;
        height: 32px;
        padding: 0.4rem;
    }

        .close-button .icon[b-vm51w16phj] {
            width: 18px;
            height: 18px;
        }
}

.close-button[b-vm51w16phj] {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

    .close-button:hover[b-vm51w16phj] {
        background: rgba(0,0,0,0.05);
        color: #333;
    }

    .close-button .icon[b-vm51w16phj] {
        width: 20px;
        height: 20px;
    }

@media (max-width: 767px) {
    .close-button[b-vm51w16phj] {
        width: 32px;
        height: 32px;
        padding: 0.4rem;
    }

        .close-button .icon[b-vm51w16phj] {
            width: 18px;
            height: 18px;
        }
}

.transfer-container[b-vm51w16phj] {
    background-color: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 24px;
    margin: 24px auto;
    max-width: 800px;
    direction: rtl;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-group[b-vm51w16phj] {
    margin-bottom: 20px;
}

    .form-group label[b-vm51w16phj] {
        display: block;
        margin-bottom: 8px;
        color: #2c3e50;
        font-weight: 500;
    }

.form-control[b-vm51w16phj] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: all 0.2s ease;
    background-color: white;
}

    .form-control:focus[b-vm51w16phj] {
        outline: none;
        border-color: #4a90e2;
        box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.1);
    }

.btn-submit[b-vm51w16phj] {
    background-color: #4a90e2;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    margin-top: 16px;
}

    .btn-submit:hover[b-vm51w16phj] {
        background-color: #357abd;
        transform: translateY(-1px);
    }

    .btn-submit:disabled[b-vm51w16phj] {
        background-color: #ccc;
        cursor: not-allowed;
        transform: none;
    }

.validation-message[b-vm51w16phj] {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 4px;
}

.account-select[b-vm51w16phj] {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

    .account-select .form-group[b-vm51w16phj] {
        flex: 1;
    }

.amount-input[b-vm51w16phj] {
    position: relative;
}

    .amount-input input[b-vm51w16phj] {
        padding-right: 40px;
    }

    .amount-input[b-vm51w16phj]::after {
        content: "تومان";
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        color: #6c757d;
        font-size: 0.875rem;
    }

@media screen and (max-width: 768px) {
    .transfer-container[b-vm51w16phj] {
        padding: 16px;
        margin: 16px;
    }

    .account-select[b-vm51w16phj] {
        flex-direction: column;
        gap: 12px;
    }

    .form-control[b-vm51w16phj] {
        font-size: 16px; /* Prevents zoom on mobile */
    }
}
/* _content/ExpenseManagement.UI/Pages/Profiles/Overview.razor.rz.scp.css */
.overview-container[b-lma8r2u3rv] {
    padding: 2rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #f8f9fa;
    min-height: 100vh;
}

.charts-grid[b-lma8r2u3rv] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    width: 100%;
}

.chart-card[b-lma8r2u3rv] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 400px;
}

.chart-card:hover[b-lma8r2u3rv] {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.chart-card h3[b-lma8r2u3rv] {
    margin: 0 0 1.5rem 0;
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.no-data[b-lma8r2u3rv] {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 300px;
    color: #6c757d;
    font-size: 1.1rem;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin: 1rem 0;
}

@media (max-width: 768px) {
    .overview-container[b-lma8r2u3rv] {
        padding: 1rem;
    }
    
    .charts-grid[b-lma8r2u3rv] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .chart-card[b-lma8r2u3rv] {
        min-height: 350px;
    }
}

@media (max-width: 480px) {
    .overview-container[b-lma8r2u3rv] {
        padding: 0.75rem;
    }
    
    .chart-card[b-lma8r2u3rv] {
        padding: 1rem;
        min-height: 300px;
    }
    
    .chart-card h3[b-lma8r2u3rv] {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .no-data[b-lma8r2u3rv] {
        min-height: 250px;
        font-size: 1rem;
    }
}
/* _content/ExpenseManagement.UI/Pages/Profiles/Profile.razor.rz.scp.css */
.profile-container[b-6xb5rqmvmw] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
}

.profile-card[b-6xb5rqmvmw] {
    width: 100%;
    max-width: 800px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.profile-header[b-6xb5rqmvmw] {
    text-align: center;
    margin-bottom: 2rem;
}

.profile-header h2[b-6xb5rqmvmw] {
    color: var(--box-header-text-color);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.profile-separator[b-6xb5rqmvmw] {
    height: 3px;
    background: linear-gradient(to right, transparent, var(--box-header-text-color), transparent);
    margin: 0 auto;
    width: 50%;
}

.profile-content[b-6xb5rqmvmw] {
    padding: 1rem 0;
}

.profile-field[b-6xb5rqmvmw] {
    margin-bottom: 1rem;
}

.profile-field label[b-6xb5rqmvmw] {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--box-content-text-color);
    font-weight: 500;
}

.profile-field .form-control[b-6xb5rqmvmw] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: border-color 0.2s ease;
}

.profile-field .form-control:focus[b-6xb5rqmvmw] {
    border-color: var(--box-submit-btn-color);
    box-shadow: 0 0 0 2px rgba(var(--box-submit-btn-color-rgb), 0.1);
}

.profile-field .form-control[readonly][b-6xb5rqmvmw] {
    background-color: #f8fafc;
    cursor: not-allowed;
}

.profile-actions[b-6xb5rqmvmw] {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.profile-actions .btn[b-6xb5rqmvmw] {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.profile-actions .btn:hover[b-6xb5rqmvmw] {
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .profile-container[b-6xb5rqmvmw] {
        padding: 1rem;
    }
    
    .profile-card[b-6xb5rqmvmw] {
        padding: 1.5rem;
    }
    
    .profile-header h2[b-6xb5rqmvmw] {
        font-size: 1.5rem;
    }
}
/* _content/ExpenseManagement.UI/Pages/Profiles/ProfileNavbar.razor.rz.scp.css */

span[b-wddlhonzj3] {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    margin: 1rem 0;
}

i[b-wddlhonzj3] {
    padding-left: 10px;
}

p[b-wddlhonzj3] {
    text-align: center;
    color: white;
}

span:hover[b-wddlhonzj3] {
    color: #481aa0;
    transition: color 0.3s;
    cursor: pointer;
}

.ProfileBrief[b-wddlhonzj3] {
    border-bottom: solid 1px white;
}
/* _content/ExpenseManagement.UI/Shared/MainLayout.razor.rz.scp.css */
.hamburger-menu[b-h3fa39jj26] {
    display: none;
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1001;
    background-color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 0.5rem;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s ease;
}

    .hamburger-menu:hover[b-h3fa39jj26] {
        background-color: #f8f9fa;
    }

    .hamburger-menu svg[b-h3fa39jj26] {
        display: block;
        color: #333;
    }

.SideBarContainer[b-h3fa39jj26] {
    transition: transform 0.3s ease-in-out; 
}

.main-body[b-h3fa39jj26] {
    flex: 1;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.MainContent[b-h3fa39jj26] {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
}

.overlay[b-h3fa39jj26] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999;
}

@media (max-width: 991px) {
    .hamburger-menu[b-h3fa39jj26] {
        display: block;
    }

    .overlay[b-h3fa39jj26] {
        display: block;
    }

    .SideBarContainer[b-h3fa39jj26] {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        z-index: 1000;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        width: 100%;
    }

    .SideBarContainer.sidebar-collapsed[b-h3fa39jj26] {
        transform: translateX(0);
    }

    .main-body[b-h3fa39jj26] {
        width: 100%;
        margin-right: 0 !important;
    }

    .MainContent[b-h3fa39jj26] {
        width: 100%;
        margin-right: 0 !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .SideBarContainer[b-h3fa39jj26] {
        width: 50%;
    }
}

@media (min-width: 992px) {
    .SideBarContainer[b-h3fa39jj26] {
        width: 280px;
    }
}
/* _content/ExpenseManagement.UI/Shared/NotFound.razor.rz.scp.css */
*[b-ivm1gnyeer] {
    font-family: 'PT Sans Caption', sans-serif, 'arial', 'Times New Roman';
}
/* Error Page */
.error .clip .shadow[b-ivm1gnyeer] {
    height: 180px; /*Contrall*/
}

.error .clip:nth-of-type(2) .shadow[b-ivm1gnyeer] {
    width: 130px; /*Contrall play with javascript*/
}

.error .clip:nth-of-type(1) .shadow[b-ivm1gnyeer], .error .clip:nth-of-type(3) .shadow[b-ivm1gnyeer] {
    width: 250px; /*Contrall*/
}

.error .digit[b-ivm1gnyeer] {
    width: 150px; /*Contrall*/
    height: 150px; /*Contrall*/
    line-height: 150px; /*Contrall*/
    font-size: 120px;
    font-weight: bold;
}

.error h2[b-ivm1gnyeer] /*Contrall*/ {
    font-size: 32px;
}

.error .msg[b-ivm1gnyeer] /*Contrall*/ {
    top: -190px;
    left: 30%;
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 32px;
}

.error span.triangle[b-ivm1gnyeer] /*Contrall*/ {
    top: 70%;
    right: 0%;
    border-left: 20px solid #535353;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}


.error .container-error-404[b-ivm1gnyeer] {
    margin-top: 10%;
    position: relative;
    height: 250px;
    padding-top: 40px;
}

    .error .container-error-404 .clip[b-ivm1gnyeer] {
        display: inline-block;
        transform: skew(-45deg);
    }

.error .clip .shadow[b-ivm1gnyeer] {
    overflow: hidden;
}

.error .clip:nth-of-type(2) .shadow[b-ivm1gnyeer] {
    overflow: hidden;
    position: relative;
    box-shadow: inset 20px 0px 20px -15px rgba(150, 150, 150,0.8), 20px 0px 20px -15px rgba(150, 150, 150,0.8);
}

.error .clip:nth-of-type(3) .shadow[b-ivm1gnyeer]:after, .error .clip:nth-of-type(1) .shadow[b-ivm1gnyeer]:after {
    content: "";
    position: absolute;
    right: -8px;
    bottom: 0px;
    z-index: 9999;
    height: 100%;
    width: 10px;
    background: linear-gradient(90deg, transparent, rgba(173,173,173, 0.8), transparent);
    border-radius: 50%;
}

.error .clip:nth-of-type(3) .shadow[b-ivm1gnyeer]:after {
    left: -8px;
}

.error .digit[b-ivm1gnyeer] {
    position: relative;
    top: 8%;
    color: white;
    background: #07B3F9;
    border-radius: 50%;
    display: inline-block;
    transform: skew(45deg);
}

.error .clip:nth-of-type(2) .digit[b-ivm1gnyeer] {
    left: -10%;
}

.error .clip:nth-of-type(1) .digit[b-ivm1gnyeer] {
    right: -20%;
}

.error .clip:nth-of-type(3) .digit[b-ivm1gnyeer] {
    left: -20%;
}

.error h2[b-ivm1gnyeer] {
    color: #A2A2A2;
    font-weight: bold;
    padding-bottom: 20px;
}

.error .msg[b-ivm1gnyeer] {
    position: relative;
    z-index: 9999;
    display: block;
    background: #535353;
    color: #A2A2A2;
    border-radius: 50%;
    font-style: italic;
}

.error .triangle[b-ivm1gnyeer] {
    position: absolute;
    z-index: 999;
    transform: rotate(45deg);
    content: "";
    width: 0;
    height: 0;
}

/* Error Page */
@media(max-width: 767px) {
    /* Error Page */
    .error .clip .shadow[b-ivm1gnyeer] {
        height: 100px; /*Contrall*/
    }

    .error .clip:nth-of-type(2) .shadow[b-ivm1gnyeer] {
        width: 80px; /*Contrall play with javascript*/
    }

    .error .clip:nth-of-type(1) .shadow[b-ivm1gnyeer], .error .clip:nth-of-type(3) .shadow[b-ivm1gnyeer] {
        width: 100px; /*Contrall*/
    }

    .error .digit[b-ivm1gnyeer] {
        width: 80px; /*Contrall*/
        height: 80px; /*Contrall*/
        line-height: 80px; /*Contrall*/
        font-size: 52px;
    }

    .error h2[b-ivm1gnyeer] /*Contrall*/ {
        font-size: 24px;
    }

    .error .msg[b-ivm1gnyeer] /*Contrall*/ {
        top: -110px;
        left: 15%;
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 18px;
    }

    .error span.triangle[b-ivm1gnyeer] /*Contrall*/ {
        top: 70%;
        right: -3%;
        border-left: 10px solid #535353;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
    }

    .error .container-error-404[b-ivm1gnyeer] {
        height: 150px;
    }
    /* Error Page */
}

/*--------------------------------------------Framework --------------------------------*/

.overlay[b-ivm1gnyeer] {
    position: relative;
    z-index: 20;
}
/*done*/
.ground-color[b-ivm1gnyeer] {
    background: white;
}
/*done*/
.item-bg-color[b-ivm1gnyeer] {
    background: #EAEAEA
}
/*done*/

/* Padding Section*/
.padding-top[b-ivm1gnyeer] {
    padding-top: 10px;
}
/*done*/
.padding-bottom[b-ivm1gnyeer] {
    padding-bottom: 10px;
}
/*done*/
.padding-vertical[b-ivm1gnyeer] {
    padding-top: 10px;
    padding-bottom: 10px;
}

.padding-horizontal[b-ivm1gnyeer] {
    padding-left: 10px;
    padding-right: 10px;
}

.padding-all[b-ivm1gnyeer] {
    padding: 10px;
}
/*done*/

.no-padding-left[b-ivm1gnyeer] {
    padding-left: 0px;
}
/*done*/
.no-padding-right[b-ivm1gnyeer] {
    padding-right: 0px;
}
/*done*/
.no-vertical-padding[b-ivm1gnyeer] {
    padding-top: 0px;
    padding-bottom: 0px;
}

.no-horizontal-padding[b-ivm1gnyeer] {
    padding-left: 0px;
    padding-right: 0px;
}

.no-padding[b-ivm1gnyeer] {
    padding: 0px;
}
/*done*/
/* Padding Section*/

/* Margin section */
.margin-top[b-ivm1gnyeer] {
    margin-top: 10px;
}
/*done*/
.margin-bottom[b-ivm1gnyeer] {
    margin-bottom: 10px;
}
/*done*/
.margin-right[b-ivm1gnyeer] {
    margin-right: 10px;
}
/*done*/
.margin-left[b-ivm1gnyeer] {
    margin-left: 10px;
}
/*done*/
.margin-horizontal[b-ivm1gnyeer] {
    margin-left: 10px;
    margin-right: 10px;
}
/*done*/
.margin-vertical[b-ivm1gnyeer] {
    margin-top: 10px;
    margin-bottom: 10px;
}
/*done*/
.margin-all[b-ivm1gnyeer] {
    margin: 10px;
}
/*done*/
.no-margin[b-ivm1gnyeer] {
    margin: 0px;
}
/*done*/

.no-vertical-margin[b-ivm1gnyeer] {
    margin-top: 0px;
    margin-bottom: 0px;
}

.no-horizontal-margin[b-ivm1gnyeer] {
    margin-left: 0px;
    margin-right: 0px;
}

.inside-col-shrink[b-ivm1gnyeer] {
    margin: 0px 20px;
}
/*done - For the inside sections that has also Title section*/
/* Margin section */

hr[b-ivm1gnyeer] {
    margin: 0px;
    padding: 0px;
    border-top: 1px dashed #999;
}
/*--------------------------------------------FrameWork------------------------*/
/* _content/ExpenseManagement.UI/Shared/ProfileLayout.razor.rz.scp.css */
.page[b-mu1ynsmudl] {
    background-color: rgb(5,22,30);
    flex-direction: column;
    direction: rtl;
    min-height: 100vh;
}


.Navbar[b-mu1ynsmudl] {
    z-index: 1030;
    position: sticky;
    width: 100%;
    height: var(--Top-Nav-Height);
    padding-right: 10px;
}

.generate-back-to-top[b-mu1ynsmudl] {
    background-color: var(--Button-Main-Color);
    color: white;
    font-size: 20px;
    border-radius: 10px;
    position: fixed;
    bottom: 5px;
    right: 30px;
    line-height: 39px;
    width: 40px;
    height: 40px;
    text-align: center;
    z-index: 1030;
    cursor: pointer;
}

    .generate-back-to-top span:hover[b-mu1ynsmudl] {
        color: black;
        transition: 0.3s;
    }

    .generate-back-to-top:active[b-mu1ynsmudl] {
        border: 1px solid #fff;
    }


.ProfileWholeBody[b-mu1ynsmudl] {
    min-height: 60vh;
}

.ProfileNavBar[b-mu1ynsmudl] {
    background-color: #042536;
    width: 400px;
    margin: 10px;
    border: 1px solid #481aa0;
    border-radius: 5px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    padding: 1rem;
}

.ProfileContent[b-mu1ynsmudl] {
    width: -webkit-fill-available;
    margin: 10px;
    border-radius: 5px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    padding: 1rem;
    color: white;
    display: flex;
    flex-wrap: wrap;
}

.ErrorContent[b-mu1ynsmudl] {
    align-content: center;
    text-align: center;
}

@media (max-width: 600px) {
    .nav[b-mu1ynsmudl] {
        flex-direction: column;
        text-align: center;
    }

        .nav img[b-mu1ynsmudl] {
            margin-bottom: 10px;
        }

        .nav h2[b-mu1ynsmudl] {
            font-size: 18px;
        }

        .nav a[b-mu1ynsmudl] {
            padding: 8px;
        }

    .main-content-nav[b-mu1ynsmudl] {
        position: static;
        margin: 1rem auto;
        width: 90%;
    }

    .main-content-profile[b-mu1ynsmudl] {
        position: static;
        margin: 1rem auto;
        width: 90%;
    }

    .ProfileNavBar[b-mu1ynsmudl] {
        display: none;
    }
}
