.custom-image-selector-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.custom-image-selector-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.custom-image-selector-preview-wrapper {
    position: relative;
    width: 100%;
    height: auto;
}

.custom-image-selector-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    cursor: pointer;
}

.custom-image-selector-btn {
    position: absolute;
    top: 0.7rem;
    left: 0.7rem;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 0.8rem 0.8rem;
    font-size: 1rem;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

.custom-image-selector-btn-trash {
    background-color: #dc3545;
    color: #fff;
}

    .custom-image-selector-btn-trash:hover {
        background-color: #b02a37;
    }

.custom-image-selector-file {
    display: none;
}
.custom-image-selector-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
}