td {
    text-align: center;
}

.delete-comment-image-preview {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 22px;
    height: 22px;
    border: none;
    background-color: rgba(0,0,0,0.5);
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.delete-comment-image-preview:hover {
    background-color: rgba(255, 0, 0, 0.8);
    transform: scale(1.1);
}

.comment-image-wrapper{
    width: 80px;
    height: 80px;
    position: relative;
    border: 2px solid #ccc;
    border-radius: 5px;
}