.epfa-image-field-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.epfa-image-option {
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

.epfa-image-option input {
    display: none;
}

.epfa-image-option img {
    width: 100px;
    height: 100px;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: border-color 0.3s;
}

.epfa-image-option input:checked + img {
    border-color: #0073aa;
}
