.history {
    position: absolute;
    top: 170px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.history .item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px;
    background-color: #fff;
    min-width: 220px;
    min-height: 120px;
    border-radius: 8px;
    box-sizing: border-box;
    cursor: pointer;
}

.history .item .itemTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
}

.history .item .itemTop .title {
    font-size: 14px;
    color: #999;
}

.history .item .itemTop .close {
    justify-self: flex-end;
    font-size: 16px;
}

.history .item .itemMiddle {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
}

.history .item .itemBottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    width: 100%;
    color: #666;
}

.history .item .itemBottom .trip {
    flex: 1;
    display: flex;
    align-items: center;
}

.history .item .itemBottom .date {
    display: flex;
    align-items: center;
}

.history .item .itemPrice {
    font-size: 16px;
    text-align: right;
}

.history .item .itemPrice .lowestPrice {
    font-weight: bold;
}