.image-preview{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:15px;
}

.image-box{
    position:relative;
    width:120px;
    border-radius:12px;
    overflow:hidden;
    background:#fff;
    border:1px solid #ddd;
    contain:content;
}

.preview-img{
    width:120px;
    height:90px;
    object-fit:cover;
    display:block;
    will-change:transform;
}

.remove-btn{
    position:absolute;
    top:5px;
    right:5px;
    width:24px;
    height:24px;
    border:none;
    border-radius:50%;
    background:red;
    color:#fff;
    cursor:pointer;
    font-size:16px;
    line-height:24px;
}

.cover-btn{
    width:100%;
    border:none;
    background:#0d6efd;
    color:#fff;
    padding:8px;
    cursor:pointer;
    font-size:13px;
}

.cover-label{
    text-align:center;
    font-size:12px;
    padding:6px;
    background:#198754;
    color:#fff;
}

.cover-active{
    border:2px solid #198754;
}