/* استایل‌های فرانت‌اند */
.mwr-wallet-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.mwr-balance-display {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.mwr-balance-amount {
    font-size: 32px;
    font-weight: bold;
    color: #28a745;
    margin: 10px 0;
}

.mwr-balance-label {
    color: #6c757d;
    font-size: 16px;
}

.mwr-transactions-list {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.mwr-transaction-item {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
}

.mwr-transaction-item:last-child {
    border-bottom: none;
}

.mwr-transaction-type {
    font-weight: 500;
}

.mwr-transaction-amount.positive {
    color: #28a745;
}

.mwr-transaction-amount.negative {
    color: #dc3545;
}

.mwr-transaction-date {
    color: #6c757d;
    font-size: 14px;
}

.mwr-referral-section {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.mwr-referral-link-container {
    display: flex;
    margin: 15px 0;
}

.mwr-referral-link {
    flex: 1;
    padding: 10px;
    background: #fff;
    border: 1px solid #ced4da;
    border-right: none;
    border-radius: 4px 0 0 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mwr-copy-button {
    padding: 10px 15px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.mwr-copy-button:hover {
    background: #0056b3;
}

.mwr-notifications {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
}

.mwr-notification-item {
    padding: 10px 0;
    border-bottom: 1px solid #f1f1f1;
}

.mwr-notification-item:last-child {
    border-bottom: none;
}

.mwr-notification-date {
    color: #6c757d;
    font-size: 12px;
    margin-top: 5px;
}
