/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #1f2937;
    font-size: 16px;
    line-height: 1.5;
}

#app {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.app-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* 底部导航 */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.nav-item {
    background: none;
    border: none;
    padding: 8px 16px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    transition: all 0.3s ease;
}

.nav-item.active {
    background: rgba(79, 70, 229, 0.1);
    color: #4f46e5;
}

.nav-icon {
    font-size: 24px;
}

.nav-label {
    font-size: 12px;
    font-weight: 500;
}

/* 主内容区域 */
.main-content {
    flex: 1;
    padding-bottom: 80px;
    overflow-y: auto;
}

.page {
    padding: 20px;
}

/* 页面头部 */
.page-header {
    text-align: center;
    margin-bottom: 30px;
}

.app-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 8px;
}

.admin-badge {
    background: rgba(239, 68, 68, 0.9);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
}

/* 余额卡片 */
.balance-section {
    margin-bottom: 30px;
}

.balance-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.balance-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.card-icon {
    font-size: 32px;
}

.card-title {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
}

.balance-amount {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
}

.balance-card.total .balance-amount {
    color: #059669;
}

/* 统计网格 */
.stats-section {
    margin-bottom: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 12px;
    color: #6b7280;
    display: block;
    margin-bottom: 4px;
}

.stat-value {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}

.stat-value.income {
    color: #059669;
}

.stat-value.expense {
    color: #dc2626;
}

/* 最近交易 */
.recent-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.recent-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.recent-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}

.recent-item:last-child {
    border-bottom: none;
}

.transaction-icon {
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 50%;
}

.transaction-info {
    flex: 1;
}

.transaction-title {
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    display: block;
    margin-bottom: 2px;
}

.transaction-time {
    font-size: 12px;
    color: #6b7280;
}

.transaction-amount {
    font-size: 16px;
    font-weight: 600;
}

.transaction-amount.income {
    color: #059669;
}

.transaction-amount.expense {
    color: #dc2626;
}

/* 任务标签页 */
.tab-container {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.tab-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 12px;
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: linear-gradient(45deg, #4f46e5, #7c3aed);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(79, 70, 229, 0.3);
}

/* 任务网格 */
.task-categories {
    margin-bottom: 20px;
}

.task-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}

.task-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.task-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.task-card.income {
    border-color: rgba(16, 185, 129, 0.3);
}

.task-card.expense {
    border-color: rgba(239, 68, 68, 0.3);
}

.task-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}

.task-title {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.task-category {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 16px;
}

.task-reward {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 2px;
}

.reward-amount {
    font-size: 20px;
    font-weight: 700;
    color: #059669;
}

.reward-label {
    font-size: 12px;
    color: #059669;
}

.task-cost {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 2px;
}

.cost-amount {
    font-size: 20px;
    font-weight: 700;
    color: #dc2626;
}

.cost-label {
    font-size: 12px;
    color: #dc2626;
}

/* 学期筛选 */
.semester-filter {
    margin-bottom: 20px;
}

.semester-select {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 16px;
    color: #1f2937;
}

/* 汇总卡片 */
.summary-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.summary-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.summary-title {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 8px;
}

.summary-amount {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
}

.summary-amount.income {
    color: #059669;
}

.summary-amount.expense {
    color: #dc2626;
}

/* 交易历史 */
.transaction-history {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.transaction-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 400px;
    overflow-y: auto;
}

.transaction-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f9fafb;
    border-radius: 12px;
}

.transaction-details {
    flex: 1;
}

.transaction-item .transaction-title {
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 2px;
}

.transaction-date {
    font-size: 12px;
    color: #6b7280;
}

/* 设置页面 */
.settings-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #f3f4f6;
}

.setting-item:last-child {
    border-bottom: none;
}

.setting-label {
    font-size: 16px;
    color: #374151;
    font-weight: 500;
}

.setting-value {
    font-size: 16px;
    color: #1f2937;
    font-weight: 600;
}

.admin-section {
    margin-bottom: 20px;
}

.admin-btn {
    width: 100%;
    background: rgba(79, 70, 229, 0.1);
    border: 2px solid rgba(79, 70, 229, 0.3);
    border-radius: 12px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #4f46e5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-btn.active {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #dc2626;
}

.data-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.data-btn {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.data-btn.export {
    border-color: rgba(16, 185, 129, 0.3);
    color: #059669;
}

.data-btn.import {
    border-color: rgba(59, 130, 246, 0.3);
    color: #1d4ed8;
}

.data-btn.reset {
    grid-column: 1 / -1;
    border-color: rgba(239, 68, 68, 0.3);
    color: #dc2626;
}

/* PIN验证对话框 */
.modal-overlay {
    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;
    z-index: 1000;
    padding: 20px;
}

.modal-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 24px;
    text-align: center;
}

.pin-input {
    width: 100%;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    font-size: 18px;
    text-align: center;
    letter-spacing: 8px;
    margin-bottom: 24px;
    outline: none;
}

.pin-input:focus {
    border-color: #4f46e5;
}

.modal-buttons {
    display: flex;
    gap: 12px;
}

.cancel-btn {
    flex: 1;
    background: #f3f4f6;
    border: none;
    border-radius: 12px;
    padding: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
}

.confirm-btn {
    flex: 1;
    background: linear-gradient(45deg, #4f46e5, #7c3aed);
    border: none;
    border-radius: 12px;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .balance-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .summary-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .task-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
    }

    .data-section {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .page {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .balance-card {
        padding: 16px;
    }

    .balance-amount {
        font-size: 24px;
    }

    .app-title {
        font-size: 24px;
    }

    .nav-icon {
        font-size: 20px;
    }

    .nav-label {
        font-size: 10px;
    }
}

/* 动画效果 */
.task-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.task-card:active {
    transform: scale(0.95);
}

.nav-item:active {
    transform: scale(0.9);
}

.btn:active {
    transform: scale(0.95);
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* 新增样式 */

/* 筛选器样式 */
.stats-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.filter-select {
    flex: 1;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    transition: all 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: #4f46e5;
}

/* 历史记录头部 */
.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.transaction-count {
    font-size: 12px;
    color: #6b7280;
    background: #f3f4f6;
    padding: 4px 8px;
    border-radius: 12px;
}

.no-records {
    text-align: center;
    padding: 40px 20px;
    color: #6b7280;
    font-size: 14px;
}

/* 管理员功能样式 */
.admin-features {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

/* 学期控制 */
.semester-controls {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 20px;
}

/* 学期列表 */
.semester-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.semester-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.semester-item:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.semester-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.semester-name {
    font-size: 16px;
    font-weight: 500;
    color: #374151;
}

.semester-status {
    font-size: 12px;
    color: #059669;
    background: rgba(16, 185, 129, 0.1);
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 500;
    align-self: flex-start;
}

.semester-actions {
    display: flex;
    gap: 8px;
}

.warning-text {
    color: #dc2626;
    font-size: 14px;
    margin: 8px 0;
    padding: 8px 12px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 8px;
}

.add-btn {
    background: linear-gradient(45deg, #4f46e5, #7c3aed);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

/* 规则管理 */
.rule-controls {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.rule-type-btn {
    background: rgba(79, 70, 229, 0.1);
    color: #4f46e5;
    border: 2px solid rgba(79, 70, 229, 0.3);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rule-type-btn:hover {
    background: rgba(79, 70, 229, 0.2);
    transform: translateY(-2px);
}

.rules-list {
    margin-bottom: 20px;
}

.rules-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.rules-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.rule-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rule-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rule-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.rule-icon {
    font-size: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
}

.rule-name {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.rule-amount.income {
    color: #059669;
    font-weight: 600;
    font-size: 14px;
}

.rule-amount.expense {
    color: #dc2626;
    font-weight: 600;
    font-size: 14px;
}

.rule-actions {
    display: flex;
    gap: 8px;
}

.edit-btn, .delete-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.edit-btn {
    background: #3b82f6;
    color: #ffffff;
}

.edit-btn:hover {
    background: #2563eb;
}

.delete-btn {
    background: #ef4444;
    color: #ffffff;
}

.delete-btn:hover {
    background: #dc2626;
}

/* 模态框样式增强 */
.rule-modal {
    max-width: 500px;
    width: 90%;
}

.rule-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.text-input {
    width: 100%;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    color: #1f2937;
    transition: all 0.3s ease;
}

.text-input:focus {
    outline: none;
    border-color: #4f46e5;
}

/* 图标选择器 */
.icon-selector {
    cursor: pointer;
}

.current-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.current-icon:hover {
    border-color: #4f46e5;
}

.icon-display {
    font-size: 20px;
}

.icon-hint {
    font-size: 12px;
    color: #6b7280;
}

/* 图标选择器模态框 */
.icon-picker-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.icon-picker {
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

.icon-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.category-btn {
    background: #f3f4f6;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn.active {
    background: linear-gradient(45deg, #4f46e5, #7c3aed);
    color: #ffffff;
    border-color: #4f46e5;
}

.category-btn:hover {
    border-color: #4f46e5;
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
    gap: 8px;
    max-height: 300px;
    overflow-y: auto;
    padding: 16px;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.icon-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: #ffffff;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.icon-item:hover {
    background: #f3f4f6;
    transform: scale(1.1);
}

.icon-item.selected {
    background: linear-gradient(45deg, #4f46e5, #7c3aed);
    color: #ffffff;
    border-color: #4f46e5;
}

/* 响应式优化 */
@media (max-width: 768px) {
    .stats-filters {
        flex-direction: column;
    gap: 12px;
    }

    .filter-select {
        margin-bottom: 0;
    }

    .semester-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .rule-controls {
        flex-direction: column;
    }

    .rule-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .rule-actions {
        align-self: flex-end;
        width: 100%;
        justify-content: flex-end;
    }

    .icon-categories {
        flex-direction: column;
    }

    .icon-grid {
        grid-template-columns: repeat(auto-fill, minmax(40px, 1fr));
    }
}

@media (max-width: 480px) {
    .feature-section {
        padding: 16px;
    }

    .rule-modal {
        width: 95%;
    }

    .rule-form {
        gap: 12px;
    }

    .form-group {
        gap: 6px;
    }

    .icon-picker {
        width: 95%;
        max-height: 90vh;
    }
}

/* 删除交易记录按钮样式 */
.delete-transaction-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    padding: 4px;
    border-radius: 4px;
    opacity: 0.6;
    transition: all 0.2s ease;
    margin-left: auto;
}

.delete-transaction-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    opacity: 1;
    transform: scale(1.1);
}

.delete-transaction-btn:active {
    transform: scale(0.95);
}

/* 调整交易记录项样式以容纳删除按钮 */
.recent-item,
.transaction-item {
    position: relative;
}

.recent-item .delete-transaction-btn,
.transaction-item .delete-transaction-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
}

/* 在有删除按钮时调整其他元素的间距 */
.recent-item .transaction-info,
.transaction-item .transaction-details {
    margin-right: 40px;
}