.review-uploader {
    display: flex;
    gap: 10px;
    align-items: center;
}

.preview-container {
    display: flex;
    gap: 10px;
}

.thumb {
    position: relative;
}

.thumb img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.thumb .remove {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    text-align: center;
    line-height: 20px;
    cursor: pointer;
}

.upload-btn {
    width: 80px;
    height: 80px;
    font-size: 32px;
    border-radius: 10px;
    cursor: pointer;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid silver
}