.ImagePicker {
    display: inline-flex;
    width: auto !important;
    flex-direction: row;
    align-items: center;
    gap: 0;
}

.ImagePicker_imageContainer {
    flex: 1;
    flex-direction: row;
    display: inline-flex;
    padding: 8px;
    background:
            linear-gradient(45deg, #ddd 25%, transparent 25%, transparent 75%, #ddd 75%, #ddd),
            linear-gradient(45deg, #ddd 25%, transparent 25%, transparent 75%, #ddd 75%, #ddd);
    background-size: 10px 10px;
    background-position: 0 0, 5px 5px;
}

.ImagePicker_image {
    cursor: pointer;
    width: 64px;
    height: 64px;
    flex: 1;
    display: inline-block;
    border: none;
    outline: none; /* Removes focus outline */
    appearance: none; /* Removes default styling */
    -webkit-appearance: none;
    -moz-appearance: none;
}

.ImagePicker_placeholder {
    cursor: pointer;
    display: inline-block;
    width: 64px;
    height: 64px;
    font-size: 16px;
    text-align: center;
}

.ImagePicker_clearButton {
    align-self: center;
    margin: 0;
    padding-left: 10px;
    padding-top: 0;
    padding-bottom: 0;
    border: none;
    background: transparent;
}
