table{
    width: 100%;
    display: block;
    overflow: auto;
    table-layout: fixed;
    min-height: 60vh;
}
.table_450{
    max-height: 450px;
    min-height: 0 !important;
    overflow-y: auto;
}
.table_300{
    max-height: 300px;
    min-height: 0 !important;
    overflow-y: auto;
}
.table_350{
    max-height: 350px;
    min-height: 0 !important;
    overflow-y: auto;
}
.table_250{
    max-height: 250px;
    min-height: 0 !important;
    overflow-y: auto;

}
thead{
    width: 100% !important;
    position: sticky; 
    top: 0;
    background-color: #FFF;
    z-index: 1000;
}
tbody{
    width: 100%;
    overflow: auto;
}
.t_acciones{
    min-width: 250px;
    word-wrap: break-word;
}
.t_acciones_2{
    min-width: 150px;
    word-wrap: break-word;
}
.t_acciones button{
    background-color: #FFF;
}
table th{
    text-align: left;
    padding: 20px;
    border-bottom:  var(--border-default);
    color: #4F4F4F;
}
table td{
    padding: 15px 20px;
    width: 100%;
}
table tr:hover > td{
    outline:  var(--border-default);
    background-color: var(--borders-color);
}
table input[type="number"]{
    padding: 5px;
    width: 80px;
    max-width: 80px;
    text-align: center;
}
.th_center{
    text-align: center;
}
#Totals{
    margin: 40px 0;
}
#Totals p{
    margin: 15px 0;
}
#Totals strong{
    margin-right: 10px;
}

.modal_table{
    border: var(--border-default);
    border-radius: 10px;
    padding: 20px;
    min-height: 80% !important;
    display: flex;
    flex-direction: column;
}

/* Resaltadores */
.status{
    width: 100%;
    text-align: center;
    padding: 8px 10px;
    border-radius: 5px;
}
.status_green{
    background-color: #9adada;
    color: #262626ff;
}
.status_yellow
{
    background-color: #F7FAAA;
}
.status_red{
    background-color: #ffbdbdff;
    color: #1B0404;
}
.status_blue{
    background-color: #ABE5F9;
    color: #000;
    
}
.status_aqua_marine{
    background-color: #CDF2F0;
    color: #000;
}
.status_purple{
    background-color: #F9D7F6;
    color: #310C2E;
}