/*toolbar*/
/*--------------------------------------------*/
.toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #fbfbfb;
    border-bottom: 1px solid #ddd;
}

.info, .actions {
    display: flex;
    align-items: center;
    gap: 5px;
}


    .info span {
        font-size: 14px;
        color: #333;
    }


    .actions button {
        padding: 5px 10px;
        font-size: 14px;
        border: 1px solid #ddd;
        background-color: #fff;
        cursor: pointer;
        transition: background-color 0.3s;
    }

        .actions button:hover {
            background-color: #e7e7e7;
        }

    .actions select {
        padding: 5px;
        font-size: 14px;
    }
/* Separator Style */
.separator {
    border-left: 1px solid #ddd;
    height: 20px;
    margin: 0 5px;
}
/*End toolbar*/
/*--------------------------------------------*/


.imgsGalary {
    display: flex;
    flex-direction: row;
}

    .imgsGalary .item {
        position: relative;
        width: 80px;
        height:80px
        border: 1px solid #ddd;
    }

        .imgsGalary .item img {
            width: 50px;
        }

        .imgsGalary .item:hover .RemoveBtn{
            display:block;
        }
        .imgsGalary .RemoveBtn {
            display: none;
            position: absolute;
            bottom: 5px;
            right: 5px;
            transition: ease-in 0.5ms;
        }
.success-input {

border:1px solid #33a114;
}