.transaction-container {
    /* height: 400px; */
    background: var(--theme-panel-bg, #081108);
    border-radius: 15px;
    padding: 20px;
    margin: 50px auto;
    border: 1px solid var(--theme-panel-border, #10b981);
    box-shadow: 0 0 15px var(--theme-panel-shadow, #00ff99); 
    overflow: hidden;

    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0 auto;
}

.transaction-item {
    border: 1px solid var(--theme-panel-border, #10b981);
    padding: 1rem;
    border-radius: 0.5rem;
    background: var(--theme-review-bg, #0d1a0d);
    transition: opacity 0.3s ease;
}

.transaction-item * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.transaction-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.transaction-left {
    flex: 1;
}

.transaction-right {
    text-align: right;
}

.name-phone {
    font-weight: bold;
    margin-bottom: 0.25rem;
    color: var(--theme-text, #ffffff);
}

.time {
    font-size: 0.875rem;
    color: var(--theme-muted, #9ca3af);
    margin-bottom: 0.25rem;
}

.ref {
    font-size: 0.75rem;
    color: var(--theme-muted, #6b7280);
}

.amount {
    color: var(--theme-accent, #00ffcc);
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.status-pending {
    color: var(--theme-highlight, #fbbf24);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.25rem;
}

.status-completed {
    color: var(--theme-accent-strong, #00ff99);
    font-size: 0.875rem;
}
