#TipHistory_List .ListItem {
    display: grid;
    grid-template-columns: 3fr 50px 2fr 2fr;
    grid-template-rows: fit-content fit-content;
}

.TipHistory_Reason {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    font-size: 12px;
    font-weight: bold;
    color: #555;
}

.TipHistory_DateTime {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    font-size: 10px;
    color: #999;
}

.TipHistory_TargetImg {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    width: 30px;
    object-fit: contain;
    justify-self: center;
}

.TipHistory_TargetName {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    font-size: 12px;
    color: #555;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.TipHistory_ChangeAmount {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    text-align: right;
    padding-right: 10px;
    font-size: 12px;
}

.TipHistory_ChangeAmount_Plus {
    color: orange;    
}
.TipHistory_ChangeAmount_Zero {
    color: #555;    
}
.TipHistory_ChangeAmount_Minus {
    color: lightseagreen;
}

.TipHistory_PointAmount {
    grid-column: 4 / 5;
    grid-row: 1 / 3;
    display: flex;
    justify-content: right;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    color: #777;
}