.TroubleCheck_ImageUpload_Container {
    display: grid;
    gap: 2em;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    width: 100%;
    align-items: start;
}

.TroubleCheck_ImageUpload_Container .ImageSection {
    display: grid;
    gap: 1em;
    grid-template-columns: repeat(auto-fit, 150px);
    justify-content: center;
}

.TroubleCheck_ImageUpload_Container .ImageSection .Title {
    grid-column: 1 / -1;
    font-weight: bold;
    color: #333;
}
.TroubleCheck_ImageUpload_Container .ImageSection .Image {
    aspect-ratio: 1/1;
}
.TroubleCheck_ImageUpload_Container .ImageSection .DummyImg {
    border: 1px solid #ccc;
}
.TroubleCheck_ImageUpload_Container .ImageSection .ImageUploadBox {
    aspect-ratio: 1/1;
    border: 1px dashed #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
}


.TroubleCheck_ImageSelector_Container {
    width: 100%;
    display: grid;
    gap: 2em;
}

.TroubleCheck_ImageSelector_Container .Title {
    font-weight: bold;
    color: #333;
    text-align: center;
}
.TroubleCheck_ImageSelector_Container .ImageSection {
    display: grid;
    gap: 1em;
    grid-template-columns: repeat(auto-fit, 150px);
    justify-content: center;
}
.TroubleCheck_ImageSelector_Container .ImageSection .ImageBox {
    position: relative;
    display: grid;
    gap: 0.5em;
}
.TroubleCheck_ImageSelector_Container .ImageSection .ImageBox .ImageCheckbox {
    position: absolute;
    top: 10px;
    left: 10px;
}
.TroubleCheck_ImageSelector_Container .ImageSection .ImageBox .DummyImg {
    aspect-ratio: 1/1;
    border: 1px solid #ccc;
}
.TroubleCheck_ImageSelector_Container .ImageSection .ImageBox .ImageRadio {
    display: none;
}
.TroubleCheck_ImageSelector_Container .ImageSection .ImageBox .MainImageButton {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px 20px;
    border-radius: 20px;
    border: 1px solid #777;
}
.TroubleCheck_ImageSelector_Container .ImageSection .ImageBox .ImageRadio:checked + .MainImageButton {
    background-color: rgba(65, 65, 195, 0.2);
    color: rgb(65, 65, 195);
    font-weight: bold;
    border: none;
}