﻿.mud-table-cell {
    padding: 0px 16px 0px 16px;
    margin: 0px;
}

.text-upper input {
    text-transform: uppercase;
}

.text-lower input {
    text-transform: lowercase;
}

.blur {
    backdrop-filter: blur(10px);
}

.dialog-background-title {
    background-color: var(--mud-palette-background-gray);
    color: #ba182c;
}

/*  .mud-dialog .mud-dialog-title{
                            padding: 10px 12px !important;        } */

/* Configuração do mudtable deixa fixo a coluna Ação */
.fixed-column {
    position: sticky;
    background-color: var(--mud-palette-background-gray);
}

.gray-column {
    background-color: var(--mud-palette-background-gray) !important;
}

.position {
    left: 0;
}

th.fixed-column {
    z-index: 30;
}

td.fixed-column {
    z-index: 20;
}
/* Configuração do mudtable deixa fixo a coluna Ação */

.input-height {
    min-height: 30px; /* Usando min-height em vez de height */
    height: auto; /* Permite que a altura aumente conforme necessário */
    display: flex;
    margin-left: 5px;
 /* Centraliza verticalmente o conteúdo */
    flex-wrap: wrap;
}
 

.skeleton-loader {
    background: linear-gradient(90deg, #eee, #f5f5f5, #eee);
    background-size: 200% 100%;
    animation: skeleton-animation 1.5s infinite linear;
    border-radius: 4px;
    color: transparent;
}

@keyframes skeleton-animation {
    from {
        background-position: 200% 0;
    }

    to {
        background-position: -200% 0;
    }
}





