.item-container {
    width: 150px;
    height: 150px;
    background-color: lavender;
    margin: 4px;
    padding: 8px;
    cursor: pointer;
    transition: 0.2s;
}

.item-container:hover {
    transform: scale(0.9);
    filter: drop-shadow(0 5px 5px dimgray);
}

.item-container-icon {
    text-align: center;
    color: green;
    height: 25px;
}

.item-container-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 25px;
}

.item-container-description {
    height: 70px;
    overflow: hidden;
    font-size: 0.8rem;
    color: dimgray;
}

.item-container-footer {
    height: 16px;
    font-size: 0.8rem;
    text-align: right;
}



.item-container-long {
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid lightgray;
    border-radius: 5px;
    padding: 12px;
    margin: 12px 0 12px 0;
    cursor: pointer;
}

.item-container-long-row {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.item-container-long-username {
    font-size: 0.8rem;
    color: navy;
}

.item-container-long-description {
    font-size: 0.8rem;
}

.item-container-long-footer {
    font-size: 0.8rem;
    text-align: right;
}