@font-face {
    font-family: "FFMetaBold";
    src: url("/fonts/FF-Meta-Pro-Bold.ttf");
}
@font-face {
    font-family: "Alegraya-Regular";
    src: url("/fonts/Alegreya-Regular.ttf");
}
.containerGrafico {
    background-color: white;
}
.table-container {
    overflow-x: auto; /* Habilita el desplazamiento horizontal */
    -webkit-overflow-scrolling: touch; /* Suaviza el desplazamiento en dispositivos táctiles */
}
 /* Estilos personalizados */
 .table-custom {
    border-collapse: collapse;
    width: 120%;
    max-width: 120%;
        overflow-x: auto;
}


.table-custom th, .table-custom td {
    white-space: nowrap;
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    word-wrap: break-word;  
    white-space: normal; 
}

.table-custom thead th {
    background-color: #002856; /* Azul */
    color: #ffffff;
}

.table-custom tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}
.table-custom th:nth-child(3), 
        .table-custom td:nth-child(3) {
            min-width: 60px; /* Ajusta este valor según sea necesario */
        }

.table-custom tbody tr:hover {
    background-color: rgba(0, 40, 86, 0.25); /* Azul con opacidad */;
}

.table-custom td {
    max-width: 800px;  /* Establece un ancho máximo para las celdas, ajusta el valor según tu necesidad */
}


.table-custom tbody td.highlight {
    color: #A51008; /* Rojo */
    font-weight: bold;
}

/* Dimension para el modal perfil biografia */

.profile-container {
    position: relative;
    display: inline-block;
}
.plus-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.modal-dialog {
    max-width: 600px;
}
.modal-content {
    padding: 20px;
}