.transactions {
    padding: 0 24px 24px 24px;
    flex: 1;
}

.transactions h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-color);
}

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

.transaction-item {
    background-color: var(--secondary-bg-color);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: transform 0.1s ease, background-color 0.2s ease;
}

.transaction-item:active {
    transform: scale(0.98);
    background-color: #e5e5ea;
}

.transaction-item.empty {
    justify-content: center;
    color: var(--hint-color);
    font-style: italic;
    background: transparent;
    border: 1px dashed var(--hint-color);
}

.t-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.t-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.t-info {
    display: flex;
    flex-direction: column;
}

.t-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 2px;
}

.t-meta {
    font-size: 12px;
    color: var(--hint-color);
}

.t-amount {
    font-size: 16px;
    font-weight: 700;
}

.date-header {
    font-size: 13px;
    font-weight: 600;
    color: var(--hint-color);
    padding: 8px 0;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bg-danger-light {
    background-color: rgba(255, 59, 48, 0.1);
}

.bg-success-light {
    background-color: rgba(52, 199, 89, 0.1);
}
