#tablaDatos {
    table-layout: fixed;
    width: 100%;
}

#tablaDatos th,
#tablaDatos td {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Asignar anchos aproximados */
#tablaDatos th:nth-child(1),
#tablaDatos td:nth-child(1) { width: 5%; }   /* Id */
#tablaDatos th:nth-child(2),
#tablaDatos td:nth-child(2) { width: 15%; }  /* Fecha */
#tablaDatos th:nth-child(3),
#tablaDatos td:nth-child(3) { width: 10%; }  /* Habitación */
#tablaDatos th:nth-child(4),
#tablaDatos td:nth-child(4) { width: 20%; }  /* Nombre */
#tablaDatos th:nth-child(5),
#tablaDatos td:nth-child(5) { width: 20%; }  /* Tipo */
#tablaDatos th:nth-child(6),
#tablaDatos td:nth-child(6) { width: 8%; }  /* Estado */
#tablaDatos th:nth-child(7),
#tablaDatos td:nth-child(7) { width: 8%; }  /* Acciones */


#tablaDatos td .btn {
    padding: 0.25rem 0.35rem; /* más pequeño que el btn-sm por defecto */
    font-size: 0.75rem;       /* reduce tamaño de ícono y texto */
    line-height: 1;           /* evita que se estire */
}