#loopContainer {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    margin-top: 1rem;
}

.loopItem {
    width: 8rem;
    height: 3.125rem;
    border: 0.0625rem solid #333;
    border-radius: 0.42rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.42rem;
    transition: transform 0.3s, background-color 0.3s;
}

.active {
    transform: scale(1.1);
    background-color: palegreen;
}

#loopOutput {
    margin-top: 0.625rem;
}
