.delete-btn {
    display: none;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 100;
    cursor: pointer;
    background-color: #f8f9fa;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.delete-btn i {
    color: #dc3545;
    font-size: 1.2rem;
}

.table-container {
    position: relative;
    padding-top: 20px;
}

.row-delete-animation {
    animation: fadeOutRow 0.5s ease forwards;
}

@keyframes fadeOutRow {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-100%);
        height: 0;
        padding: 0;
        margin: 0;
    }
}

.checkbox-column {
    width: 50px;
}