html, body {
    background-color: #F6F6F6;
}

.app-list {
    margin: 0vh 5vw 2vh;
    display: flex;
    flex-direction: column;
    width: 90vw;
}

.app-item {
    margin-bottom: 2vh;
    background-color: #FFFFFF;
    box-shadow: 2px 2px 5px #D3D6DA;
    border-radius: 1rem;

    padding: 6vw 5vw;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.app-right {
    flex-shrink: 0;
    width: 1.6rem;
}

.app-left {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.app-version {
    border: 2px solid #2BB65C;
    border-radius: 0.5rem;
    color: #2BB65C;
    font-weight: bold;

    width: 24vw;
    text-align: center;
    height: 15vw;
    line-height: 15vw;
    margin-right: 5vw;
}

.app-info {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.app-code {
    color: #333333;
    font-size: 1rem;
}

.app-content {
    color: #666666;
    font-size: 0.7rem;
}

.app-date {
    color: #666666;
    font-size: 0.7rem;
}