.thumbnail img {
    max-width: 100px;
    max-height: 100px;
}

.thumbnail {
    position: relative;
    display: inline-block;
    margin: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
    width: 75px; /* Adjust the width as needed */
}

.delete-icon {
    cursor: pointer;
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 5px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.thumbnail-frontend {
    display: inline-block;
    margin: 10px;
    cursor: pointer;
}
.thumbnail-frontend img {
    max-width: 100px;
    max-height: 100px;
}