/* Tabla de Entity List */
.entity-grid.entitylist {
    width: 100%;
    border: 1px solid #e6eeee;
    border-radius: 2px;
    overflow: hidden;
}

/* Cabeceras y celdas */
.entity-grid.entitylist th,
.entity-grid.entitylist td {
    color: #005746;
    font-size: 14px;
    visibility: visible;
    opacity: 1;
    vertical-align: middle !important;
    padding: 14px 16px !important;
    border-bottom: 1px solid #edf2f1;
}

/* Cabecera */
.entity-grid.entitylist th {
    font-weight: 700;
    background-color: #f8fbfa;
}

/* Filas alternas muy sutiles */
.entity-grid.entitylist tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

.entity-grid.entitylist tbody tr:nth-child(even) {
    background-color: #fbfdfc;
}

/* Hover suave */
.entity-grid.entitylist tbody tr:hover {
    background-color: #f3f8f6;
}

/* Enlaces */
.entity-grid.entitylist td a {
    color: #005746;
    font-size: 14px;
    font-weight: 700;
    visibility: visible;
    opacity: 1;
    text-decoration: none;
}

.entity-grid.entitylist td a:hover {
    text-decoration: underline;
}

/* Primera columna: icono */
.entity-grid.entitylist th:first-child,
.entity-grid.entitylist td:first-child {
    width: 70px;
    text-align: center;
}

/* Iconos */
.entity-grid.entitylist td:first-child img,
.entity-grid.entitylist img {
    width: 28px !important;
    height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}

/* Opcional: cajita sutil alrededor del icono */
.entity-grid.entitylist td:first-child img {
    padding: 4px;
    background-color: #f5faf8;
    border: 1px solid #e3eeeb;
    border-radius: 6px;
    box-sizing: content-box;
}