.config-container {
    width: 30%;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    overflow-y: auto;
}

.group-container {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.model-container {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.option-button {
    aspect-ratio: 1 / 1;
    width: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: 0;
    background: #EAEAEA;
    position: relative;
}
.option-button-content {
    width: 100%;
    height: 100%;
    border-radius: 17px;
    overflow: clip;
}
.option-button.active{
    border: #F0000D 3px solid;
}
.option-button.active:after {
    content: '\2713';
    font-size: 1.2rem;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%,-50%);
    z-index: 1;
    padding: 0 .4rem;
    background: #F0000D;
    border-radius: 99999px;
}

.model-img {
    width: 100%;
}