.fm-upload-area-wrapper {
    display: flex;
    flex-direction: column;
}

.fm-upload-area {
    --fm-upload-item-height: 20px;
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 2rem;
    background: #f5f5f5;
    border-radius: 1rem;
}

.fm-upload-list-heading {
    margin-bottom: 1em;
    font-weight: bold;
}

.fm-upload-list {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    width: 100%;
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.fm-upload-progress-bar {
    width: 100%;
    max-width: 30em;
    height: var(--fm-upload-item-height);
    outline: 1px solid grey;
    border-radius: 100px;
    overflow: hidden;
}

.fm-upload-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--fm-upload-progress);
    height: 100%;
    background: lightgray;
    font-size: 14px;
    overflow: hidden;
}

.fm-upload-file {
    display: flex;
    align-items: center;
    gap: .5em;
}

.fm-upload-select.hide {
    display: none;
}

.fm-upload-remove-file {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: var(--fm-upload-item-height);
    height: var(--fm-upload-item-height);
    padding: 5px;
    color: white;
    background: pink;
    border: 0;
    border-radius: 100%;
    position: relative;
    stroke-width: 2;
    cursor: pointer;
    transition-duration: .2s;
}

.fm-upload-remove-file:hover {
    background: red;
}
