.list {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    max-height: 90vh;
    overflow-y: auto;
}
.item {
    border: 1px solid black;
    border-radius: 10px;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem;
    display: flex;
    gap: 0.5rem;
}
.item span:first-child {
    text-align: left;
}
.item span:last-child {
    text-align: right;
}

.new {
    font-weight: bold;
    color: red;
}