.modal-content{
    /* width: 40% !important;
    height: 60% !important;
    margin: auto !important; */
}

.skeleton.skeleton-checkbox {
    width: 20px;
    height: 20px;
    margin: 0 auto;
}
td.text-end{
    display:flex;
    justify-content: space-evenly;
}
.skeleton.skeleton-text {
    width: 80%;
    height: 20px;
    margin: 0 auto;
}

.skeleton.skeleton-action {
    width: 50%;
    height: 20px;
    margin: 0 auto;
}

.skeleton-row {
    height: 60px; /* Adjust height based on your table row height */
}
/* Skeleton Styles */
.skeleton-image {
    height: 50px;
    width: 50px;
    background: #cbc7c7;
    animation: shimmer 1.5s infinite linear;
}

.skeleton-text {
    height: 20px;
    width: 100%;
    background: #cbc7c7;
    margin-bottom: 10px;
    animation: shimmer 1.5s infinite linear;
}

.skeleton-button {
    height: 30px;
    width: 100px;
    background: #cbc7c7;
    animation: shimmer 1.5s infinite linear;
}

.skeleton-title {
    height: 30px;
    width: 70%;
    background: #cbc7c7;
    animation: shimmer 1.5s infinite linear;
}
.toast-body{
    color: white;
}
.col-md-6{
    margin-bottom: 10px;
}
button{
    cursor: pointer;
}

@keyframes shimmer {
    0% {
        background-position: -150%;
    }
    100% {
        background-position: 150%;
    }
}