﻿.mud-table-head {
}

    .mud-table-head .column-header {
        font-size: 1.1em;
        font-weight: 600 !important;
    }

.justify-space-between-filter {
    display: flex;
    justify-content: space-between; /* Distribuye el espacio entre los elementos */
    width: 100%;
}

.button-filter-container {
    display: flex;
    justify-content: flex-end; /* Alinea el contenido al final del contenedor */
    flex-grow: 1; /* Permite que el contenedor crezca para empujar el botón hacia la derecha */
}

.mud-table-container {
    width: 100%;
    overflow-y: hidden;
}

.description-cell {
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

    .description-cell:hover::after {
        content: attr(data-tooltip);
        white-space: normal;
        /*position: absolute;
        background-color: rgba(245, 250, 245, 0.75);
        color: white;
        padding: 5px;
        border-radius: 3px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);*/
        z-index: 10;
        max-width: 400px;
    }

.description_cell_general_table {
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative; /* Necesario para posicionar el tooltip */
}

    .description_cell_general_table:hover::after {
        content: attr(data-tooltip);
        white-space: normal;
        position: absolute;
        background-color: rgba(0, 0, 0, 0.75);
        color: white;
        padding: 5px;
        border-radius: 3px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
        z-index: 999;
        max-width: 400px;
        top: 100%; /* Mostrar el tooltip abajo del elemento */
        left: 0;
    }

    /*alineacion de botones en el toolbar arriba del mudgri*/
.mud-toolbar-gutters {
    padding-left: 12px;
    padding-right: 24px;
}

/*margen del mensaje de error de cada campo mud*/
.mud-input-control-helper-container {
    overflow: hidden;
    margin-top: 0px;
}

.mud-input-helper-text {
    color: var(--mud-palette-text-secondary);
    margin: 0;
    font-size: .75rem;
    text-align: start;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: .03333em;
}


/* Estilos correspondientes a la alineacion y espaciado del mudgrid de cada tabla */

.align_data_grid_values_to_right {
    text-align: end;
}

.align_data_grid_values_to_center {
    text-align: center;
}

.grid_values_font {
    font-size: 10px;
}

.grid_cell_300px_width {
    width: 300px;
}

.grid_cell_20px_width {
    width: 20px;
}

.grid_cell_30px_width {
    width: 30px;
}

.grid_cell_50px_width {
    width: 50px;
}

.grid_cell_font_red {
    color: red !important
}

.grid_cell_regular_font {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: var(--mud-typography-default-size);
}

.grid_cell_strikethrough {
    text-decoration: line-through;
}

@media (max-width: 600px) {
    .grid_cell_300px_width,
    .grid_cell_20px_width,
    .grid_cell_30px_width,
    .grid_cell_50px_width {
        width: 100%;
    }

    .align_data_grid_values_to_right {
        text-align: start;
    }
}