html, body {
    font-size: 14px;
}

table td {
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
    overflow: hidden !important;
}
.mud-button-outlined.mud-button-outlined-dark {
    color: inherit;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.h-100{
height:100%;
}
.w-100 {
width:100%;
}
.hide-scrollbar {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE & Edge */
}

    .hide-scrollbar::-webkit-scrollbar {
        display: none; /* Chrome, Safari */
    }
.img-blur-up {
    filter: blur(20px);
    transition: filter 1.5s ease-out;
}

.img-loaded {
    filter: blur(0);
}
.staging-img {
    transition: transform 0.3s ease-in-out;
}

    .staging-img:hover {
        transform: scale(1.1);
    }