﻿/* Contenedor principal */
h4, h6 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
}


.hiper {
    color: #0000EE;
    text-decoration: underline;
}

  

.not-found {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


.action_button {
    background-color: transparent;
    border: none;
}

.truncate {
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* Contenedor de la tabla */
.table-container {
    flex: 2;
    max-width: 100%;
    margin-top: 4%;
}

.min-table {
    max-width: 70%;
    margin: auto;
    margin-top: 4%;
}

/* Estilos de la tabla */
.custom-datagrid {
    font-size: 12px;
    width: 100%;
  /*  border-radius: 5px; */
  /*  border: 1px solid #ddd; */
   /* box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); */
    background-color: #f8f9fa;
}

/* Responsivo: en pantallas pequeñas, coloca los divs uno debajo del otro */
@media (max-width: 768px) {
    .grid-container {
        flex-direction: column;
        align-items: center;
    }

    .form-data,
    .table-container {
        max-width: 100%;
    }
}
