.file-upload-dashed-container {
    margin-top: 24px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

.upload-label-box {
    width: 180px;
    height: 180px;
    border: 2px dashed var(--mb-70);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: transparent;
    flex-shrink: 0;
}

.plus-icon {
    font-size: 64px;
    font-weight: 200;
    color: var(--mb-70);
    line-height: 1;
}

.confirm-button-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
}

/* New Preview Styles */
.upload-preview-item {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: var(--quaver, 8px);
    overflow: hidden;
    background-color: var(--mb-70);
    flex-shrink: 0;
    border: 1px solid var(--mb-70);
}

.upload-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.preview-remove-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background-color: rgba(250, 250, 248, 0.8);
    /* var(--bg) with opacity */
    border: 1px solid var(--mb-70);
    border-radius: 4px;
    color: var(--mb);
    font-size: 18px;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s;
    padding: 0;
    padding-bottom: 2px;
    /* Visual adj */
}

.preview-remove-btn:hover {
    background-color: var(--white);
    color: var(--status-red);
    border-color: var(--status-red);
}